summaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@osdl.org>2002-10-16 22:39:17 -0700
committerPatrick Mochel <mochel@osdl.org>2002-10-16 22:39:17 -0700
commit7b97a9fd22a391fdc5891f1ef48dbd7f0245d0dc (patch)
treed4f832018dbac2715d3045c0b5e57ad4986c046d /drivers/input
parent04013dc6090d48e8c77696b567044bb4f2376f38 (diff)
driver model (arm): change calls of remove_driver() to driver_unregister().
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/serio/sa1111ps2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/sa1111ps2.c b/drivers/input/serio/sa1111ps2.c
index 502d3c90b864..01dc3c0681f2 100644
--- a/drivers/input/serio/sa1111ps2.c
+++ b/drivers/input/serio/sa1111ps2.c
@@ -354,7 +354,7 @@ static int __init ps2_init(void)
static void __exit ps2_exit(void)
{
- remove_driver(&ps2_driver.drv);
+ driver_unregister(&ps2_driver.drv);
}
module_init(ps2_init);