aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/gameport
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-24 00:27:39 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-11-24 03:03:48 -0500
commit1cb0aa88179b7a71c240529e9d781d7bbb43d2e8 (patch)
tree9da5e91407baec88a7d1bb0364e8c98a9f9d316e /drivers/input/gameport
parent58b45d166f4c16d21f6aa059c6c5d87a9eeb1ff5 (diff)
Input: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/gameport')
-rw-r--r--drivers/input/gameport/emu10k1-gp.c2
-rw-r--r--drivers/input/gameport/fm801-gp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/gameport/emu10k1-gp.c b/drivers/input/gameport/emu10k1-gp.c
index daceafe7ee7d..c300089b5172 100644
--- a/drivers/input/gameport/emu10k1-gp.c
+++ b/drivers/input/gameport/emu10k1-gp.c
@@ -122,7 +122,7 @@ static struct pci_driver emu_driver = {
122 .name = "Emu10k1_gameport", 122 .name = "Emu10k1_gameport",
123 .id_table = emu_tbl, 123 .id_table = emu_tbl,
124 .probe = emu_probe, 124 .probe = emu_probe,
125 .remove = __devexit_p(emu_remove), 125 .remove = emu_remove,
126}; 126};
127 127
128module_pci_driver(emu_driver); 128module_pci_driver(emu_driver);
diff --git a/drivers/input/gameport/fm801-gp.c b/drivers/input/gameport/fm801-gp.c
index 48ad3829ff20..e3ab458bfb8a 100644
--- a/drivers/input/gameport/fm801-gp.c
+++ b/drivers/input/gameport/fm801-gp.c
@@ -150,7 +150,7 @@ static struct pci_driver fm801_gp_driver = {
150 .name = "FM801_gameport", 150 .name = "FM801_gameport",
151 .id_table = fm801_gp_id_table, 151 .id_table = fm801_gp_id_table,
152 .probe = fm801_gp_probe, 152 .probe = fm801_gp_probe,
153 .remove = __devexit_p(fm801_gp_remove), 153 .remove = fm801_gp_remove,
154}; 154};
155 155
156module_pci_driver(fm801_gp_driver); 156module_pci_driver(fm801_gp_driver);