Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit badf0ca6 authored by Baolin Wang's avatar Baolin Wang Committed by Todd Kjos
Browse files

UPSTREAM: mmc: host: hsq: Add missing MODULE_LICENSE() and MODULE_DESCRIPTION()



Add missing MODULE_LICENSE() and MODULE_DESCRIPTION() in hsq driver to
fix below warning when compiling the hsq as a module.

"WARNING: modpost: missing MODULE_LICENSE() in drivers/mmc/host/mmc_hsq.o".

bug: 151514181
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarBaolin Wang <baolin.wang7@gmail.com>
Link: https://lore.kernel.org/r/98ce471185f037fce57520763621590588766381.1582161803.git.baolin.wang7@gmail.com


Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
(cherry picked from commit d1709abb8cc39640e9647b3c0df4451d71bf2841)
Change-Id: Iab828050cccfc59d9a1005554943f32859599acd
parent d945faa6
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -9,6 +9,7 @@


#include <linux/mmc/card.h>
#include <linux/mmc/card.h>
#include <linux/mmc/host.h>
#include <linux/mmc/host.h>
#include <linux/module.h>


#include "mmc_hsq.h"
#include "mmc_hsq.h"


@@ -342,3 +343,6 @@ int mmc_hsq_resume(struct mmc_host *mmc)
	return mmc_hsq_enable(mmc, NULL);
	return mmc_hsq_enable(mmc, NULL);
}
}
EXPORT_SYMBOL_GPL(mmc_hsq_resume);
EXPORT_SYMBOL_GPL(mmc_hsq_resume);

MODULE_DESCRIPTION("MMC Host Software Queue support");
MODULE_LICENSE("GPL v2");