parisc: eisa_eeprom: Add missing MODULE_DESCRIPTION()

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@tutamail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Jean Delu
2026-08-08 13:56:32 +02:00
committed by Helge Deller
parent 1aa06e9203
commit 451fa0d4c3

View File

@@ -94,6 +94,7 @@ static int __init eisa_eeprom_init(void)
return 0;
}
MODULE_DESCRIPTION("EISA eeprom driver");
MODULE_LICENSE("GPL");
module_init(eisa_eeprom_init);