diff options
| author | Adrian Bunk <bunk@stusta.de> | 2006-01-29 21:51:07 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2006-01-29 21:51:07 -0500 |
| commit | ffc6b529e8c46c73827008c7406f43482d71beed (patch) | |
| tree | 7e1431c1f7e16f084e1a97ca360f2f62ba8c9762 | |
| parent | 74570d413cbb5cede06a0183a91d3006f134bf6b (diff) | |
Input: make needlessly global code static
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
| -rw-r--r-- | drivers/input/joystick/twidjoy.c | 4 | ||||
| -rw-r--r-- | drivers/input/touchscreen/mk712.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/joystick/twidjoy.c b/drivers/input/joystick/twidjoy.c index cd3a1e742a30..7f8b0093c5bc 100644 --- a/drivers/input/joystick/twidjoy.c +++ b/drivers/input/joystick/twidjoy.c | |||
| @@ -265,13 +265,13 @@ static struct serio_driver twidjoy_drv = { | |||
| 265 | * The functions for inserting/removing us as a module. | 265 | * The functions for inserting/removing us as a module. |
| 266 | */ | 266 | */ |
| 267 | 267 | ||
| 268 | int __init twidjoy_init(void) | 268 | static int __init twidjoy_init(void) |
| 269 | { | 269 | { |
| 270 | serio_register_driver(&twidjoy_drv); | 270 | serio_register_driver(&twidjoy_drv); |
| 271 | return 0; | 271 | return 0; |
| 272 | } | 272 | } |
| 273 | 273 | ||
| 274 | void __exit twidjoy_exit(void) | 274 | static void __exit twidjoy_exit(void) |
| 275 | { | 275 | { |
| 276 | serio_unregister_driver(&twidjoy_drv); | 276 | serio_unregister_driver(&twidjoy_drv); |
| 277 | } | 277 | } |
diff --git a/drivers/input/touchscreen/mk712.c b/drivers/input/touchscreen/mk712.c index 4844d250a5eb..3226830eea08 100644 --- a/drivers/input/touchscreen/mk712.c +++ b/drivers/input/touchscreen/mk712.c | |||
| @@ -154,7 +154,7 @@ static void mk712_close(struct input_dev *dev) | |||
| 154 | spin_unlock_irqrestore(&mk712_lock, flags); | 154 | spin_unlock_irqrestore(&mk712_lock, flags); |
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | int __init mk712_init(void) | 157 | static int __init mk712_init(void) |
| 158 | { | 158 | { |
| 159 | int err; | 159 | int err; |
| 160 | 160 | ||
