diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-22 02:37:53 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-04-22 02:48:58 -0400 |
commit | 5d066474cd64a5877391e3711e8c7973e6478cc8 (patch) | |
tree | 21d1ee939246dd3999f0459c345acc76cb3435ff /drivers/input/gameport/emu10k1-gp.c | |
parent | 57b8628bb0ac4e47c806e45c5bbd89282e93869b (diff) |
Input: use module_pci_driver
This patch converts the drivers in drivers/input/* to use module_pci_driver()
macro which makes the code smaller and a bit simpler.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/gameport/emu10k1-gp.c')
-rw-r--r-- | drivers/input/gameport/emu10k1-gp.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/input/gameport/emu10k1-gp.c b/drivers/input/gameport/emu10k1-gp.c index 422aa0a6b77f..daceafe7ee7d 100644 --- a/drivers/input/gameport/emu10k1-gp.c +++ b/drivers/input/gameport/emu10k1-gp.c | |||
@@ -125,15 +125,4 @@ static struct pci_driver emu_driver = { | |||
125 | .remove = __devexit_p(emu_remove), | 125 | .remove = __devexit_p(emu_remove), |
126 | }; | 126 | }; |
127 | 127 | ||
128 | static int __init emu_init(void) | 128 | module_pci_driver(emu_driver); |
129 | { | ||
130 | return pci_register_driver(&emu_driver); | ||
131 | } | ||
132 | |||
133 | static void __exit emu_exit(void) | ||
134 | { | ||
135 | pci_unregister_driver(&emu_driver); | ||
136 | } | ||
137 | |||
138 | module_init(emu_init); | ||
139 | module_exit(emu_exit); | ||