pcmcia: add missing MODULE_DESCRIPTION() macros
On x86, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pcmcia/pcmcia_rsrc.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pcmcia/yenta_socket.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pcmcia/i82092.o Add the missing invocation of the MODULE_DESCRIPTION() macro to all files which have a MODULE_LICENSE(). This includes files which did not produce a warning with the x86 allmodconfig since they may cause this warning with other configurations. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> [linux@dominikbrodowski.net: modify some descriptions] Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
parent
24a025497e
commit
0630e3bc0e
@ -23,6 +23,7 @@
|
||||
#include "i82092aa.h"
|
||||
#include "i82365.h"
|
||||
|
||||
MODULE_DESCRIPTION("Driver for Intel I82092AA PCI-PCMCIA bridge");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
/* PCI core routines */
|
||||
|
@ -1342,5 +1342,6 @@ static void __exit exit_i82365(void)
|
||||
|
||||
module_init(init_i82365);
|
||||
module_exit(exit_i82365);
|
||||
MODULE_DESCRIPTION("Driver for Intel 82365 and compatible PC Card controllers");
|
||||
MODULE_LICENSE("Dual MPL/GPL");
|
||||
/*====================================================================*/
|
||||
|
@ -119,4 +119,5 @@ int max1600_configure(struct max1600 *m, unsigned int vcc, unsigned int vpp)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(max1600_configure);
|
||||
|
||||
MODULE_DESCRIPTION("MAX1600 PCMCIA power switch library");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -66,5 +66,6 @@ EXPORT_SYMBOL(pccard_static_ops);
|
||||
|
||||
|
||||
MODULE_AUTHOR("David A. Hinds, Dominik Brodowski");
|
||||
MODULE_DESCRIPTION("PCMCIA resource management routines");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("rsrc_nonstatic");
|
||||
|
@ -1452,4 +1452,5 @@ static struct pci_driver yenta_cardbus_driver = {
|
||||
|
||||
module_pci_driver(yenta_cardbus_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Driver for CardBus yenta-compatible bridges");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
Loading…
Reference in New Issue
Block a user