The patch titled drivers/gpio/bt8xxgpio.c: add missing __init/__exit markers has been added to the -mm tree. Its filename is drivers-gpio-bt8xxgpioc-add-missing-__init-__exit-markers.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: drivers/gpio/bt8xxgpio.c: add missing __init/__exit markers From: Peter Huewe <peterhuewe@xxxxxx> Signed-off-by: Peter Huewe <peterhuewe@xxxxxx> Acked-by: Michael Buesch <mb@xxxxxxxxx> Cc: Jiri Kosina <jkosina@xxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpio/bt8xxgpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/gpio/bt8xxgpio.c~drivers-gpio-bt8xxgpioc-add-missing-__init-__exit-markers drivers/gpio/bt8xxgpio.c --- a/drivers/gpio/bt8xxgpio.c~drivers-gpio-bt8xxgpioc-add-missing-__init-__exit-markers +++ a/drivers/gpio/bt8xxgpio.c @@ -330,13 +330,13 @@ static struct pci_driver bt8xxgpio_pci_d .resume = bt8xxgpio_resume, }; -static int bt8xxgpio_init(void) +static int __init bt8xxgpio_init(void) { return pci_register_driver(&bt8xxgpio_pci_driver); } module_init(bt8xxgpio_init) -static void bt8xxgpio_exit(void) +static void __exit bt8xxgpio_exit(void) { pci_unregister_driver(&bt8xxgpio_pci_driver); } _ Patches currently in -mm which might be from peterhuewe@xxxxxx are linux-next.patch scsi-add-__init-__exit-macros-to-ibmvstgtc.patch drivers-gpio-bt8xxgpioc-add-missing-__init-__exit-markers.patch char-impi-adding-__init-macro-fix-of-__exit-macro-location-in-ipmi_poweroffc.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