From: Arnd Bergmann Date: Wed, 5 Feb 2025 12:14:08 +0000 (+0100) Subject: hwmon: (sg2042) Add back module description/author tags X-Git-Tag: v6.15-rc1~180^2~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89cb3ca56cb3192ebd07a2d8eb62e857a42cf83f;p=thirdparty%2Fkernel%2Flinux.git hwmon: (sg2042) Add back module description/author tags A previous code reorganization inadvertently dropped the two tags, which leads to a "make W=1" warning: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hwmon/sg2042-mcu.o Add these back. Fixes: cd4db38c4368 ("hwmon: (sg2042) Use per-client debugfs entry") Signed-off-by: Arnd Bergmann Reviewed-by: Inochi Amaoto Reviewed-by: Wolfram Sang Link: https://lore.kernel.org/r/20250205121419.373464-1-arnd@kernel.org Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/sg2042-mcu.c b/drivers/hwmon/sg2042-mcu.c index 74c35945d169f..105131c4acf78 100644 --- a/drivers/hwmon/sg2042-mcu.c +++ b/drivers/hwmon/sg2042-mcu.c @@ -355,4 +355,6 @@ static struct i2c_driver sg2042_mcu_driver = { }; module_i2c_driver(sg2042_mcu_driver); +MODULE_AUTHOR("Inochi Amaoto "); +MODULE_DESCRIPTION("MCU I2C driver for SG2042 soc platform"); MODULE_LICENSE("GPL");