diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-isch.c')
-rw-r--r-- | drivers/i2c/busses/i2c-isch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c index f90a6057508d..4099f79c2280 100644 --- a/drivers/i2c/busses/i2c-isch.c +++ b/drivers/i2c/busses/i2c-isch.c | |||
@@ -249,7 +249,7 @@ static struct i2c_adapter sch_adapter = { | |||
249 | .algo = &smbus_algorithm, | 249 | .algo = &smbus_algorithm, |
250 | }; | 250 | }; |
251 | 251 | ||
252 | static int __devinit smbus_sch_probe(struct platform_device *dev) | 252 | static int smbus_sch_probe(struct platform_device *dev) |
253 | { | 253 | { |
254 | struct resource *res; | 254 | struct resource *res; |
255 | int retval; | 255 | int retval; |
@@ -284,7 +284,7 @@ static int __devinit smbus_sch_probe(struct platform_device *dev) | |||
284 | return retval; | 284 | return retval; |
285 | } | 285 | } |
286 | 286 | ||
287 | static int __devexit smbus_sch_remove(struct platform_device *pdev) | 287 | static int smbus_sch_remove(struct platform_device *pdev) |
288 | { | 288 | { |
289 | struct resource *res; | 289 | struct resource *res; |
290 | if (sch_smba) { | 290 | if (sch_smba) { |
@@ -303,7 +303,7 @@ static struct platform_driver smbus_sch_driver = { | |||
303 | .owner = THIS_MODULE, | 303 | .owner = THIS_MODULE, |
304 | }, | 304 | }, |
305 | .probe = smbus_sch_probe, | 305 | .probe = smbus_sch_probe, |
306 | .remove = __devexit_p(smbus_sch_remove), | 306 | .remove = smbus_sch_remove, |
307 | }; | 307 | }; |
308 | 308 | ||
309 | module_platform_driver(smbus_sch_driver); | 309 | module_platform_driver(smbus_sch_driver); |