mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-28 16:53:49 +00:00
hwmon: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hwmon/asus_atk0110.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hwmon/corsair-cpro.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hwmon/mr75203.o Add all missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Link: https://lore.kernel.org/r/20240607-md-drivers-hwmon-v1-1-1ea6d6fe61e3@quicinc.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
1ee1237941
commit
fb7a4931ef
@ -1389,4 +1389,5 @@ static void __exit atk0110_exit(void)
|
||||
module_init(atk0110_init);
|
||||
module_exit(atk0110_exit);
|
||||
|
||||
MODULE_DESCRIPTION("ASUS ATK0110 driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -670,6 +670,7 @@ static struct hid_driver ccp_driver = {
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(hid, ccp_devices);
|
||||
MODULE_DESCRIPTION("Corsair Commander Pro controller driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
static int __init ccp_init(void)
|
||||
|
@ -925,4 +925,5 @@ static struct platform_driver moortec_pvt_driver = {
|
||||
};
|
||||
module_platform_driver(moortec_pvt_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Moortec Semiconductor MR75203 PVT Controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
Loading…
Reference in New Issue
Block a user