Skip to content

Commit b1c3875

Browse files
Jeff JohnsonKAGA-KOKO
authored andcommitted
irqchip: Add missing MODULE_DESCRIPTION() macros
On x86, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/irqchip/irq-ts4800.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/irqchip/irq-meson-gpio.o Add the missing invocation of the MODULE_DESCRIPTION() macro to all files which have a MODULE_LICENSE(). This includes a 3rd file, irq-mvebu-pic.c, which did not produce a warning with the x86 allmodconfig, but which may cause this warning with other kernel configurations. Signed-off-by: Jeff Johnson <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Andrew Lunn <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 492eee8 commit b1c3875

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

drivers/irqchip/irq-meson-gpio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,5 +608,6 @@ IRQCHIP_MATCH("amlogic,meson-gpio-intc", meson_gpio_irq_of_init)
608608
IRQCHIP_PLATFORM_DRIVER_END(meson_gpio_intc)
609609

610610
MODULE_AUTHOR("Jerome Brunet <[email protected]>");
611+
MODULE_DESCRIPTION("Meson GPIO Interrupt Multiplexer driver");
611612
MODULE_LICENSE("GPL v2");
612613
MODULE_ALIAS("platform:meson-gpio-intc");

drivers/irqchip/irq-mvebu-pic.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ module_platform_driver(mvebu_pic_driver);
193193

194194
MODULE_AUTHOR("Yehuda Yitschak <[email protected]>");
195195
MODULE_AUTHOR("Thomas Petazzoni <[email protected]>");
196+
MODULE_DESCRIPTION("Marvell Armada 7K/8K PIC driver");
196197
MODULE_LICENSE("GPL v2");
197198
MODULE_ALIAS("platform:mvebu_pic");
198199

drivers/irqchip/irq-ts4800.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@ static struct platform_driver ts4800_ic_driver = {
163163
module_platform_driver(ts4800_ic_driver);
164164

165165
MODULE_AUTHOR("Damien Riegel <[email protected]>");
166+
MODULE_DESCRIPTION("Multiplexed-IRQs driver for TS-4800's FPGA");
166167
MODULE_LICENSE("GPL v2");
167168
MODULE_ALIAS("platform:ts4800_irqc");

0 commit comments

Comments
 (0)