From: Andrew Morton Date: Sat, 2 Jul 2005 04:54:30 +0000 (-0500) Subject: Input: cannot refer to __exit from within __init. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=beffbdc2211826b174c68307b1b48c93c05d7ded;p=deliverable%2Flinux.git Input: cannot refer to __exit from within __init. Signed-off-by: Andrew Morton Signed-off-by: Dmitry Torokhov --- 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) return -ENOMEM; } -static void __exit input_proc_exit(void) +static void input_proc_exit(void) { remove_proc_entry("devices", proc_bus_input_dir); remove_proc_entry("handlers", proc_bus_input_dir);