diff options
-rw-r--r-- | drivers/i2c/busses/i2c-pxa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c index 1034d93fb838..4a79e768a4d8 100644 --- a/drivers/i2c/busses/i2c-pxa.c +++ b/drivers/i2c/busses/i2c-pxa.c | |||
@@ -1215,7 +1215,7 @@ emalloc: | |||
1215 | return ret; | 1215 | return ret; |
1216 | } | 1216 | } |
1217 | 1217 | ||
1218 | static int __exit i2c_pxa_remove(struct platform_device *dev) | 1218 | static int i2c_pxa_remove(struct platform_device *dev) |
1219 | { | 1219 | { |
1220 | struct pxa_i2c *i2c = platform_get_drvdata(dev); | 1220 | struct pxa_i2c *i2c = platform_get_drvdata(dev); |
1221 | 1221 | ||
@@ -1269,7 +1269,7 @@ static const struct dev_pm_ops i2c_pxa_dev_pm_ops = { | |||
1269 | 1269 | ||
1270 | static struct platform_driver i2c_pxa_driver = { | 1270 | static struct platform_driver i2c_pxa_driver = { |
1271 | .probe = i2c_pxa_probe, | 1271 | .probe = i2c_pxa_probe, |
1272 | .remove = __exit_p(i2c_pxa_remove), | 1272 | .remove = i2c_pxa_remove, |
1273 | .driver = { | 1273 | .driver = { |
1274 | .name = "pxa2xx-i2c", | 1274 | .name = "pxa2xx-i2c", |
1275 | .owner = THIS_MODULE, | 1275 | .owner = THIS_MODULE, |