Commit 0de048ab authored by Roel Kluin's avatar Roel Kluin Committed by Dmitry Torokhov

Input: make some variables and functions static

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 50b6f1f4
...@@ -173,7 +173,7 @@ static int __devexit gpio_mouse_remove(struct platform_device *pdev) ...@@ -173,7 +173,7 @@ static int __devexit gpio_mouse_remove(struct platform_device *pdev)
/* work with hotplug and coldplug */ /* work with hotplug and coldplug */
MODULE_ALIAS("platform:gpio_mouse"); MODULE_ALIAS("platform:gpio_mouse");
struct platform_driver gpio_mouse_device_driver = { static struct platform_driver gpio_mouse_device_driver = {
.remove = __devexit_p(gpio_mouse_remove), .remove = __devexit_p(gpio_mouse_remove),
.driver = { .driver = {
.name = "gpio_mouse", .name = "gpio_mouse",
......
...@@ -535,7 +535,7 @@ static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo) ...@@ -535,7 +535,7 @@ static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo)
return 1; return 1;
} }
int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo) static int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo)
{ {
char *data = wacom->data; char *data = wacom->data;
int prox = 0, pressure; int prox = 0, pressure;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment