The patch titled drivers/gpio/bt8xxgpio.c: add missing __init/__exit markers has been removed from the -mm tree. Its filename was drivers-gpio-bt8xxgpioc-add-missing-__init-__exit-markers.patch This patch was dropped because it was merged into mainline or a subsystem tree 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 -- 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