The patch titled kernel/irq/chip.c: set_irq_noprobe shouldn't be __init has been added to the -mm tree. Its filename is kernel-irq-chipc-set_irq_noprobe-shouldnt-be-__init.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kernel/irq/chip.c: set_irq_noprobe shouldn't be __init From: Jean Delvare <khali@xxxxxxxxxxxx> Non-__init functions need to call set_irq_noprobe() so this function shouldn't be marked __init. Also remove __init from set_irq_probe() for consistency. Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Cc: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Yinghai Lu <yinghai@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/irq/chip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/irq/chip.c~kernel-irq-chipc-set_irq_noprobe-shouldnt-be-__init kernel/irq/chip.c --- a/kernel/irq/chip.c~kernel-irq-chipc-set_irq_noprobe-shouldnt-be-__init +++ a/kernel/irq/chip.c @@ -682,7 +682,7 @@ set_irq_chip_and_handler_name(unsigned i __set_irq_handler(irq, handle, 0, name); } -void __init set_irq_noprobe(unsigned int irq) +void set_irq_noprobe(unsigned int irq) { struct irq_desc *desc = irq_to_desc(irq); unsigned long flags; @@ -697,7 +697,7 @@ void __init set_irq_noprobe(unsigned int raw_spin_unlock_irqrestore(&desc->lock, flags); } -void __init set_irq_probe(unsigned int irq) +void set_irq_probe(unsigned int irq) { struct irq_desc *desc = irq_to_desc(irq); unsigned long flags; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are hwmon-driver-for-texas-instruments-amc6821-chip.patch gpio-adp5588-gpio-new-driver-for-adp5588-gpio-expanders.patch linux-next.patch kernel-irq-chipc-set_irq_noprobe-shouldnt-be-__init.patch gpio-add-driver-for-max7300-i2c-gpio-extender.patch pca953x-minor-include-cleanup.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html