diff options
author | Andrew Morton <akpm@osdl.org> | 2005-07-02 00:54:30 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2005-07-02 00:54:30 -0400 |
commit | beffbdc2211826b174c68307b1b48c93c05d7ded (patch) | |
tree | 1af6e4b4dd3b9fc80e09129c67022ba32c03eaa7 /drivers/input | |
parent | 5b6271bda42be8edb77fbd588621cc09199fa7fb (diff) |
Input: cannot refer to __exit from within __init.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index 1ea4f1accef6..a275211c8e1e 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -581,7 +581,7 @@ static int __init input_proc_init(void) | |||
581 | return -ENOMEM; | 581 | return -ENOMEM; |
582 | } | 582 | } |
583 | 583 | ||
584 | static void __exit input_proc_exit(void) | 584 | static void input_proc_exit(void) |
585 | { | 585 | { |
586 | remove_proc_entry("devices", proc_bus_input_dir); | 586 | remove_proc_entry("devices", proc_bus_input_dir); |
587 | remove_proc_entry("handlers", proc_bus_input_dir); | 587 | remove_proc_entry("handlers", proc_bus_input_dir); |