[PATCH v2] parisc: eisa_eeprom: Add missing MODULE_DESCRIPTION()
jean delu <[email protected]>
| Newsgroups | org.kernel.vger.linux-parisc,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> --- Sorry about my first submission: my mail client mangled the patch and it could not be applied. I am resending it via git send-email as plain text, this time intact. Thanks for your patience. 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; } +MODULE_DESCRIPTION("EISA eeprom misc driver"); MODULE_LICENSE("GPL"); module_init(eisa_eeprom_init); -- 2.47.3