diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-xlr.c')
-rw-r--r-- | drivers/i2c/busses/i2c-xlr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-xlr.c b/drivers/i2c/busses/i2c-xlr.c index 96d3fabd8883..a005265461da 100644 --- a/drivers/i2c/busses/i2c-xlr.c +++ b/drivers/i2c/busses/i2c-xlr.c | |||
@@ -214,7 +214,7 @@ static struct i2c_algorithm xlr_i2c_algo = { | |||
214 | .functionality = xlr_func, | 214 | .functionality = xlr_func, |
215 | }; | 215 | }; |
216 | 216 | ||
217 | static int __devinit xlr_i2c_probe(struct platform_device *pdev) | 217 | static int xlr_i2c_probe(struct platform_device *pdev) |
218 | { | 218 | { |
219 | struct xlr_i2c_private *priv; | 219 | struct xlr_i2c_private *priv; |
220 | struct resource *res; | 220 | struct resource *res; |
@@ -251,7 +251,7 @@ static int __devinit xlr_i2c_probe(struct platform_device *pdev) | |||
251 | return 0; | 251 | return 0; |
252 | } | 252 | } |
253 | 253 | ||
254 | static int __devexit xlr_i2c_remove(struct platform_device *pdev) | 254 | static int xlr_i2c_remove(struct platform_device *pdev) |
255 | { | 255 | { |
256 | struct xlr_i2c_private *priv; | 256 | struct xlr_i2c_private *priv; |
257 | 257 | ||
@@ -263,7 +263,7 @@ static int __devexit xlr_i2c_remove(struct platform_device *pdev) | |||
263 | 263 | ||
264 | static struct platform_driver xlr_i2c_driver = { | 264 | static struct platform_driver xlr_i2c_driver = { |
265 | .probe = xlr_i2c_probe, | 265 | .probe = xlr_i2c_probe, |
266 | .remove = __devexit_p(xlr_i2c_remove), | 266 | .remove = xlr_i2c_remove, |
267 | .driver = { | 267 | .driver = { |
268 | .name = "xlr-i2cbus", | 268 | .name = "xlr-i2cbus", |
269 | .owner = THIS_MODULE, | 269 | .owner = THIS_MODULE, |