Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59f6a6c6 authored by Peter Huewe's avatar Peter Huewe Committed by Jiri Kosina
Browse files

trivial: add __init/__exit macros in drivers/gpio/bt8xxgpio.c



Trivial patch which adds the __init/__exit macro to the init/exit functions of
drivers/gpio/bt8xxgpio.c

Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Acked-by: default avatarMichael Buesch <mb@bu3sch.de>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 0e6b9e8c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -331,13 +331,13 @@ static struct pci_driver bt8xxgpio_pci_driver = {
	.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);
}