diff options
author | Alim Akhtar <alim.akhtar@samsung.com> | 2020-06-25 17:44:05 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2020-06-27 04:22:54 +0200 |
commit | 6c9b3b2aa2df0d47bd7067ad4b09279cac89e974 (patch) | |
tree | 62616c12c2375ee006c45e7bfdcaa8fcc1ab1e56 /drivers/scsi/ufs | |
parent | scsi: ufs: ufs-exynos: Fix return value check in exynos_ufs_init() (diff) | |
download | linux-6c9b3b2aa2df0d47bd7067ad4b09279cac89e974.tar.xz linux-6c9b3b2aa2df0d47bd7067ad4b09279cac89e974.zip |
scsi: ufs: ufs-exynos: Fix build warning
While building for x86_64 allmodconfig, the following warning was reported:
WARNING: modpost: missing MODULE_LICENSE() in drivers/scsi/ufs/ufs-exynos.o
Add the missing license/author/description tags.
Link: https://lore.kernel.org/r/20200625154405.60448-1-alim.akhtar@samsung.com
Fixes: 55f4b1f73631 ("scsi: ufs: ufs-exynos: Add UFS host support for Exynos SoCs")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/ufs')
-rw-r--r-- | drivers/scsi/ufs/ufs-exynos.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/scsi/ufs/ufs-exynos.c b/drivers/scsi/ufs/ufs-exynos.c index 16544b3dad47..b0796066a449 100644 --- a/drivers/scsi/ufs/ufs-exynos.c +++ b/drivers/scsi/ufs/ufs-exynos.c @@ -1290,3 +1290,8 @@ static struct platform_driver exynos_ufs_pltform = { }, }; module_platform_driver(exynos_ufs_pltform); + +MODULE_AUTHOR("Alim Akhtar <alim.akhtar@samsung.com>"); +MODULE_AUTHOR("Seungwon Jeon <essuuj@gmail.com>"); +MODULE_DESCRIPTION("Exynos UFS HCI Driver"); +MODULE_LICENSE("GPL v2"); |