diff options
author | Ramuthevar Vadivel Murugan <vadivel.muruganx.ramuthevar@linux.intel.com> | 2020-01-07 14:06:06 +0800 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2020-01-14 10:50:19 +0530 |
commit | b109c13a533b8cc2dab92d8668f5c112cc5ae4fc (patch) | |
tree | ff705bf7fd26bad0689df7698bca51b3b9cd3c4d /drivers/phy/intel | |
parent | c9f9eba06629cd813c21df3327a1013ad092e988 (diff) | |
download | linux-b109c13a533b8cc2dab92d8668f5c112cc5ae4fc.tar.bz2 |
phy: intel-lgm-emmc: Fix warning by adding missing MODULE_LICENSE
commit 95f1061f715e ("phy: intel-lgm-emmc: Add support for eMMC PHY")
introduces the below warning
WARNING: modpost: missing MODULE_LICENSE() in
drivers/phy/intel/phy-intel-emmc.o
Fix it by adding missing MODULE_LICENSE.
Signed-off-by: Ramuthevar Vadivel Murugan <vadivel.muruganx.ramuthevar@linux.intel.com>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/intel')
-rw-r--r-- | drivers/phy/intel/phy-intel-emmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/phy/intel/phy-intel-emmc.c b/drivers/phy/intel/phy-intel-emmc.c index 1a358e7fd236..703aeb122541 100644 --- a/drivers/phy/intel/phy-intel-emmc.c +++ b/drivers/phy/intel/phy-intel-emmc.c @@ -281,3 +281,4 @@ module_platform_driver(intel_emmc_driver); MODULE_AUTHOR("Peter Harliman Liem <peter.harliman.liem@intel.com>"); MODULE_DESCRIPTION("Intel eMMC PHY driver"); +MODULE_LICENSE("GPL v2"); |