Input: make some variables and functions static
Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
50b6f1f4a4
commit
0de048aba1
@@ -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)
|
|||||||
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;
|
||||||
|
Reference in New Issue
Block a user