Message ID | 20240625-md-drivers-ufs-host-v2-1-59a56974b05a@quicinc.com |
---|---|
State | New |
Headers | show |
Series | [v2] scsi: ufs: qcom: add missing MODULE_DESCRIPTION() macro | expand |
On Tue, 25 Jun 2024 09:53:45 -0700, Jeff Johnson wrote: > With ARCH=arm64, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/ufs/host/ufs-qcom.o > > Add the missing invocation of the MODULE_DESCRIPTION() macro. > > Applied to 6.11/scsi-queue, thanks! [1/1] scsi: ufs: qcom: add missing MODULE_DESCRIPTION() macro https://git.kernel.org/mkp/scsi/c/4d66ecc6e5a5
diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c index cca190d1c577..c12004030b50 100644 --- a/drivers/ufs/host/ufs-qcom.c +++ b/drivers/ufs/host/ufs-qcom.c @@ -1883,4 +1883,5 @@ static struct platform_driver ufs_qcom_pltform = { }; module_platform_driver(ufs_qcom_pltform); +MODULE_DESCRIPTION("Qualcomm UFS host controller driver"); MODULE_LICENSE("GPL v2");
With ARCH=arm64, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/ufs/host/ufs-qcom.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- Changes in v2: - Updated the description per Bart Van Assche - Link to v1: https://lore.kernel.org/r/20240612-md-drivers-ufs-host-v1-1-df35924685b8@quicinc.com --- drivers/ufs/host/ufs-qcom.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670 change-id: 20240612-md-drivers-ufs-host-a8a0aad539f0