diff options
Diffstat (limited to 'drivers/gpio/bt8xxgpio.c')
-rw-r--r-- | drivers/gpio/bt8xxgpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/bt8xxgpio.c b/drivers/gpio/bt8xxgpio.c index 984b587f0f96..55904140213b 100644 --- a/drivers/gpio/bt8xxgpio.c +++ b/drivers/gpio/bt8xxgpio.c | |||
@@ -331,13 +331,13 @@ static struct pci_driver bt8xxgpio_pci_driver = { | |||
331 | .resume = bt8xxgpio_resume, | 331 | .resume = bt8xxgpio_resume, |
332 | }; | 332 | }; |
333 | 333 | ||
334 | static int bt8xxgpio_init(void) | 334 | static int __init bt8xxgpio_init(void) |
335 | { | 335 | { |
336 | return pci_register_driver(&bt8xxgpio_pci_driver); | 336 | return pci_register_driver(&bt8xxgpio_pci_driver); |
337 | } | 337 | } |
338 | module_init(bt8xxgpio_init) | 338 | module_init(bt8xxgpio_init) |
339 | 339 | ||
340 | static void bt8xxgpio_exit(void) | 340 | static void __exit bt8xxgpio_exit(void) |
341 | { | 341 | { |
342 | pci_unregister_driver(&bt8xxgpio_pci_driver); | 342 | pci_unregister_driver(&bt8xxgpio_pci_driver); |
343 | } | 343 | } |