aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/keyboard/qt2160.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/keyboard/qt2160.c')
-rw-r--r--drivers/input/keyboard/qt2160.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/keyboard/qt2160.c b/drivers/input/keyboard/qt2160.c
index 691fe92a9824..69a6a6ffdbe3 100644
--- a/drivers/input/keyboard/qt2160.c
+++ b/drivers/input/keyboard/qt2160.c
@@ -183,7 +183,7 @@ static void qt2160_worker(struct work_struct *work)
183 qt2160_schedule_read(qt2160); 183 qt2160_schedule_read(qt2160);
184} 184}
185 185
186static int __devinit qt2160_read(struct i2c_client *client, u8 reg) 186static int qt2160_read(struct i2c_client *client, u8 reg)
187{ 187{
188 int ret; 188 int ret;
189 189
@@ -204,7 +204,7 @@ static int __devinit qt2160_read(struct i2c_client *client, u8 reg)
204 return ret; 204 return ret;
205} 205}
206 206
207static int __devinit qt2160_write(struct i2c_client *client, u8 reg, u8 data) 207static int qt2160_write(struct i2c_client *client, u8 reg, u8 data)
208{ 208{
209 int ret; 209 int ret;
210 210
@@ -217,7 +217,7 @@ static int __devinit qt2160_write(struct i2c_client *client, u8 reg, u8 data)
217} 217}
218 218
219 219
220static bool __devinit qt2160_identify(struct i2c_client *client) 220static bool qt2160_identify(struct i2c_client *client)
221{ 221{
222 int id, ver, rev; 222 int id, ver, rev;
223 223
@@ -248,7 +248,7 @@ static bool __devinit qt2160_identify(struct i2c_client *client)
248 return true; 248 return true;
249} 249}
250 250
251static int __devinit qt2160_probe(struct i2c_client *client, 251static int qt2160_probe(struct i2c_client *client,
252 const struct i2c_device_id *id) 252 const struct i2c_device_id *id)
253{ 253{
254 struct qt2160_data *qt2160; 254 struct qt2160_data *qt2160;