[PATCH] parisc: eisa_eeprom: Add missing MODULE_DESCRIPTION()
From: jean delu
Date: Sat Aug 08 2026 - 07:56:32 EST
drivers/parisc/eisa_eeprom.c is a standalone module (it has
MODULE_LICENSE() and module_init()) but is missing the
MODULE_DESCRIPTION() macro, so modpost emits a warning about it.
Add the missing description.
Signed-off-by: jean delu <jeandelu@xxxxxxxxxxxx>
---
drivers/parisc/eisa_eeprom.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c
index 601cbb225..adc3c7e82 100644
--- a/drivers/parisc/eisa_eeprom.c
+++ b/drivers/parisc/eisa_eeprom.c
@@ -94,6 +94,7 @@ static int __init eisa_eeprom_init(void)
return 0;
}
=C2=A0
+MODULE_DESCRIPTION("EISA eeprom misc driver");
MODULE_LICENSE("GPL");
=C2=A0
module_init(eisa_eeprom_init);
--=C2=A0
2.47.3