]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
scsi: ufs-mediatek: Add missing MODULE_* information
authorAnders Roxell <anders.roxell@linaro.org>
Thu, 21 Mar 2019 13:24:44 +0000 (14:24 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 26 Mar 2019 02:09:42 +0000 (22:09 -0400)
When building the ufs-mediatek module the following warning shows up:

WARNING: modpost: missing MODULE_LICENSE() in
  drivers/scsi/ufs/ufs-mediatek.o

Rework to add MODULE_LICENSE,MODULE_AUTHOR and MODULE_DESCRIPTION.

Fixes: ddd90623ce26 ("scsi: ufs-mediatek: Add UFS support for Mediatek SoC chips")
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Reviewed-by: Stanley Chu <stanley.chu@mediatek.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/ufs/ufs-mediatek.c

index 25045e9ce134c35e6e9c87c12569d025349c2fde..0f6ff33ce52eea963c64c5d76e1071d37a23cb9f 100644 (file)
@@ -360,4 +360,9 @@ static struct platform_driver ufs_mtk_pltform = {
        },
 };
 
+MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");
+MODULE_AUTHOR("Peter Wang <peter.wang@mediatek.com>");
+MODULE_DESCRIPTION("MediaTek UFS Host Driver");
+MODULE_LICENSE("GPL v2");
+
 module_platform_driver(ufs_mtk_pltform);