diff options
Diffstat (limited to 'drivers/mfd/tps6105x.c')
-rw-r--r-- | drivers/mfd/tps6105x.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mfd/tps6105x.c b/drivers/mfd/tps6105x.c index 14051bdc714..1d302f583ad 100644 --- a/drivers/mfd/tps6105x.c +++ b/drivers/mfd/tps6105x.c | |||
@@ -86,7 +86,7 @@ fail: | |||
86 | } | 86 | } |
87 | EXPORT_SYMBOL(tps6105x_mask_and_set); | 87 | EXPORT_SYMBOL(tps6105x_mask_and_set); |
88 | 88 | ||
89 | static int __devinit tps6105x_startup(struct tps6105x *tps6105x) | 89 | static int tps6105x_startup(struct tps6105x *tps6105x) |
90 | { | 90 | { |
91 | int ret; | 91 | int ret; |
92 | u8 regval; | 92 | u8 regval; |
@@ -133,7 +133,7 @@ static struct mfd_cell tps6105x_cells[] = { | |||
133 | }, | 133 | }, |
134 | }; | 134 | }; |
135 | 135 | ||
136 | static int __devinit tps6105x_probe(struct i2c_client *client, | 136 | static int tps6105x_probe(struct i2c_client *client, |
137 | const struct i2c_device_id *id) | 137 | const struct i2c_device_id *id) |
138 | { | 138 | { |
139 | struct tps6105x *tps6105x; | 139 | struct tps6105x *tps6105x; |
@@ -199,7 +199,7 @@ fail: | |||
199 | return ret; | 199 | return ret; |
200 | } | 200 | } |
201 | 201 | ||
202 | static int __devexit tps6105x_remove(struct i2c_client *client) | 202 | static int tps6105x_remove(struct i2c_client *client) |
203 | { | 203 | { |
204 | struct tps6105x *tps6105x = i2c_get_clientdata(client); | 204 | struct tps6105x *tps6105x = i2c_get_clientdata(client); |
205 | 205 | ||
@@ -226,7 +226,7 @@ static struct i2c_driver tps6105x_driver = { | |||
226 | .name = "tps6105x", | 226 | .name = "tps6105x", |
227 | }, | 227 | }, |
228 | .probe = tps6105x_probe, | 228 | .probe = tps6105x_probe, |
229 | .remove = __devexit_p(tps6105x_remove), | 229 | .remove = tps6105x_remove, |
230 | .id_table = tps6105x_id, | 230 | .id_table = tps6105x_id, |
231 | }; | 231 | }; |
232 | 232 | ||