diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-11-03 00:57:40 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-11-03 01:26:18 -0500 |
commit | f5ba35023697e54a24487bcd822194390a333893 (patch) | |
tree | 48ef5ae04c6b58e2abc6294aac7dbda44029fef0 /drivers/input/mouse/synaptics_i2c.c | |
parent | e74c2e81fc9e1e674f2747c85fe8cfeaaafa55f6 (diff) |
Input: synaptic_i2c - make unnecessarily global functions static
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/synaptics_i2c.c')
-rw-r--r-- | drivers/input/mouse/synaptics_i2c.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/mouse/synaptics_i2c.c b/drivers/input/mouse/synaptics_i2c.c index 7283c78044af..9867dfe2a638 100644 --- a/drivers/input/mouse/synaptics_i2c.c +++ b/drivers/input/mouse/synaptics_i2c.c | |||
@@ -420,8 +420,8 @@ static void synaptics_i2c_check_params(struct synaptics_i2c *touch) | |||
420 | } | 420 | } |
421 | 421 | ||
422 | /* Control the Device polling rate / Work Handler sleep time */ | 422 | /* Control the Device polling rate / Work Handler sleep time */ |
423 | unsigned long synaptics_i2c_adjust_delay(struct synaptics_i2c *touch, | 423 | static unsigned long synaptics_i2c_adjust_delay(struct synaptics_i2c *touch, |
424 | bool have_data) | 424 | bool have_data) |
425 | { | 425 | { |
426 | unsigned long delay, nodata_count_thres; | 426 | unsigned long delay, nodata_count_thres; |
427 | 427 | ||
@@ -520,7 +520,7 @@ static void synaptics_i2c_set_input_params(struct synaptics_i2c *touch) | |||
520 | __set_bit(BTN_LEFT, input->keybit); | 520 | __set_bit(BTN_LEFT, input->keybit); |
521 | } | 521 | } |
522 | 522 | ||
523 | struct synaptics_i2c *synaptics_i2c_touch_create(struct i2c_client *client) | 523 | static struct synaptics_i2c *synaptics_i2c_touch_create(struct i2c_client *client) |
524 | { | 524 | { |
525 | struct synaptics_i2c *touch; | 525 | struct synaptics_i2c *touch; |
526 | 526 | ||