diff options
author | 2025-02-05 13:14:08 +0100 | |
---|---|---|
committer | 2025-02-06 18:51:18 -0800 | |
commit | 89cb3ca56cb3192ebd07a2d8eb62e857a42cf83f (patch) | |
tree | 9202d1ff0351e0138402704a8d92ba4cd808cb22 /drivers/hwmon | |
parent | hwmon: (sht3x) Use per-client debugfs entry (diff) | |
download | wireguard-linux-89cb3ca56cb3192ebd07a2d8eb62e857a42cf83f.tar.xz wireguard-linux-89cb3ca56cb3192ebd07a2d8eb62e857a42cf83f.zip |
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 <arnd@arndb.de>
Reviewed-by: Inochi Amaoto <inochiama@gmail.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20250205121419.373464-1-arnd@kernel.org
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/sg2042-mcu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hwmon/sg2042-mcu.c b/drivers/hwmon/sg2042-mcu.c index 74c35945d169..105131c4acf7 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 <inochiama@outlook.com>"); +MODULE_DESCRIPTION("MCU I2C driver for SG2042 soc platform"); MODULE_LICENSE("GPL"); |