diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-04 03:05:44 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-07-04 19:38:40 +0300 |
commit | d502645bc839ecff7837efd65928e085225dfce2 (patch) | |
tree | c5ebfea797594a223c9e42a941eb0599f647af15 /drivers/mfd | |
parent | 4c4ade1aba55ca90b49c59dd229a952b1610775b (diff) | |
download | linux-d502645bc839ecff7837efd65928e085225dfce2.tar.xz |
mfd: qcom-pm8008: Add missing MODULE_DESCRIPTION() macro
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>
Link: https://lore.kernel.org/r/20240603-md-drivers-mfd-qcom-v1-1-88e48013eccc@quicinc.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/qcom-pm8008.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/qcom-pm8008.c b/drivers/mfd/qcom-pm8008.c index 246b5fe9819d..60204cc9a2dc 100644 --- a/drivers/mfd/qcom-pm8008.c +++ b/drivers/mfd/qcom-pm8008.c @@ -275,4 +275,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"); |