aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/misc/ad714x-i2c.c
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2012-12-17 01:04:14 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-12-17 01:04:14 -0500
commit022573c275500e1a50889949f679d04b5446edf6 (patch)
tree766ab0e13fc38275466f8544d1bbf4982833cbff /drivers/input/misc/ad714x-i2c.c
parent516d798f656614f59553b1ff3592c2c36102b684 (diff)
parenta455e2985f57e2a71566bb8850094af38b2c932d (diff)
Merge branch 'next' into for-linus
Prepare first set of updates for 3.8 merge window.
Diffstat (limited to 'drivers/input/misc/ad714x-i2c.c')
-rw-r--r--drivers/input/misc/ad714x-i2c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/ad714x-i2c.c b/drivers/input/misc/ad714x-i2c.c
index c8a79015472..29d2064c26f 100644
--- a/drivers/input/misc/ad714x-i2c.c
+++ b/drivers/input/misc/ad714x-i2c.c
@@ -72,7 +72,7 @@ static int ad714x_i2c_read(struct ad714x_chip *chip,
72 return 0; 72 return 0;
73} 73}
74 74
75static int __devinit ad714x_i2c_probe(struct i2c_client *client, 75static int ad714x_i2c_probe(struct i2c_client *client,
76 const struct i2c_device_id *id) 76 const struct i2c_device_id *id)
77{ 77{
78 struct ad714x_chip *chip; 78 struct ad714x_chip *chip;
@@ -87,7 +87,7 @@ static int __devinit ad714x_i2c_probe(struct i2c_client *client,
87 return 0; 87 return 0;
88} 88}
89 89
90static int __devexit ad714x_i2c_remove(struct i2c_client *client) 90static int ad714x_i2c_remove(struct i2c_client *client)
91{ 91{
92 struct ad714x_chip *chip = i2c_get_clientdata(client); 92 struct ad714x_chip *chip = i2c_get_clientdata(client);
93 93
@@ -112,7 +112,7 @@ static struct i2c_driver ad714x_i2c_driver = {
112 .pm = &ad714x_i2c_pm, 112 .pm = &ad714x_i2c_pm,
113 }, 113 },
114 .probe = ad714x_i2c_probe, 114 .probe = ad714x_i2c_probe,
115 .remove = __devexit_p(ad714x_i2c_remove), 115 .remove = ad714x_i2c_remove,
116 .id_table = ad714x_id, 116 .id_table = ad714x_id,
117}; 117};
118 118