aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/misc/adxl34x-i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/misc/adxl34x-i2c.c')
-rw-r--r--drivers/input/misc/adxl34x-i2c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/adxl34x-i2c.c b/drivers/input/misc/adxl34x-i2c.c
index dd1d1c145a7f..535dda48cace 100644
--- a/drivers/input/misc/adxl34x-i2c.c
+++ b/drivers/input/misc/adxl34x-i2c.c
@@ -73,7 +73,7 @@ static const struct adxl34x_bus_ops adxl34x_i2c_bops = {
73 .read_block = adxl34x_i2c_read_block, 73 .read_block = adxl34x_i2c_read_block,
74}; 74};
75 75
76static int __devinit adxl34x_i2c_probe(struct i2c_client *client, 76static int adxl34x_i2c_probe(struct i2c_client *client,
77 const struct i2c_device_id *id) 77 const struct i2c_device_id *id)
78{ 78{
79 struct adxl34x *ac; 79 struct adxl34x *ac;
@@ -98,7 +98,7 @@ static int __devinit adxl34x_i2c_probe(struct i2c_client *client,
98 return 0; 98 return 0;
99} 99}
100 100
101static int __devexit adxl34x_i2c_remove(struct i2c_client *client) 101static int adxl34x_i2c_remove(struct i2c_client *client)
102{ 102{
103 struct adxl34x *ac = i2c_get_clientdata(client); 103 struct adxl34x *ac = i2c_get_clientdata(client);
104 104
@@ -144,7 +144,7 @@ static struct i2c_driver adxl34x_driver = {
144 .pm = &adxl34x_i2c_pm, 144 .pm = &adxl34x_i2c_pm,
145 }, 145 },
146 .probe = adxl34x_i2c_probe, 146 .probe = adxl34x_i2c_probe,
147 .remove = __devexit_p(adxl34x_i2c_remove), 147 .remove = adxl34x_i2c_remove,
148 .id_table = adxl34x_id, 148 .id_table = adxl34x_id,
149}; 149};
150 150