Message ID | 20240603-md-drivers-mfd-qcom-v1-1-88e48013eccc@quicinc.com |
---|---|
State | Accepted |
Commit | d502645bc839ecff7837efd65928e085225dfce2 |
Headers | show |
Series | mfd: qcom-pm8008: add missing MODULE_DESCRIPTION() macro | expand |
On Mon, 03 Jun 2024 17:05:44 -0700, Jeff Johnson wrote: > make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/mfd/qcom-pm8008.o > > Add the missing invocation of the MODULE_DESCRIPTION() macro. > > Applied, thanks! [1/1] mfd: qcom-pm8008: add missing MODULE_DESCRIPTION() macro commit: 7d58eb159f217c69e5b6a0d71b3cfd5f40b367bf -- Lee Jones [李琼斯]
diff --git a/drivers/mfd/qcom-pm8008.c b/drivers/mfd/qcom-pm8008.c index 3ac3742f438b..4aadf2ba8194 100644 --- a/drivers/mfd/qcom-pm8008.c +++ b/drivers/mfd/qcom-pm8008.c @@ -210,4 +210,5 @@ static struct i2c_driver pm8008_mfd_driver = { }; module_i2c_driver(pm8008_mfd_driver); +MODULE_DESCRIPTION("QCOM PM8008 Power Management IC driver"); MODULE_LICENSE("GPL v2");
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/mfd/qcom-pm8008.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- drivers/mfd/qcom-pm8008.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 83814698cf48ce3aadc5d88a3f577f04482ff92a change-id: 20240601-md-drivers-mfd-qcom-037ca29680ce