diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-highlander.c')
-rw-r--r-- | drivers/i2c/busses/i2c-highlander.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-highlander.c b/drivers/i2c/busses/i2c-highlander.c index 19515df61021..3351cc7ed11f 100644 --- a/drivers/i2c/busses/i2c-highlander.c +++ b/drivers/i2c/busses/i2c-highlander.c | |||
@@ -356,7 +356,7 @@ static const struct i2c_algorithm highlander_i2c_algo = { | |||
356 | .functionality = highlander_i2c_func, | 356 | .functionality = highlander_i2c_func, |
357 | }; | 357 | }; |
358 | 358 | ||
359 | static int __devinit highlander_i2c_probe(struct platform_device *pdev) | 359 | static int highlander_i2c_probe(struct platform_device *pdev) |
360 | { | 360 | { |
361 | struct highlander_i2c_dev *dev; | 361 | struct highlander_i2c_dev *dev; |
362 | struct i2c_adapter *adap; | 362 | struct i2c_adapter *adap; |
@@ -441,7 +441,7 @@ err: | |||
441 | return ret; | 441 | return ret; |
442 | } | 442 | } |
443 | 443 | ||
444 | static int __devexit highlander_i2c_remove(struct platform_device *pdev) | 444 | static int highlander_i2c_remove(struct platform_device *pdev) |
445 | { | 445 | { |
446 | struct highlander_i2c_dev *dev = platform_get_drvdata(pdev); | 446 | struct highlander_i2c_dev *dev = platform_get_drvdata(pdev); |
447 | 447 | ||
@@ -465,7 +465,7 @@ static struct platform_driver highlander_i2c_driver = { | |||
465 | }, | 465 | }, |
466 | 466 | ||
467 | .probe = highlander_i2c_probe, | 467 | .probe = highlander_i2c_probe, |
468 | .remove = __devexit_p(highlander_i2c_remove), | 468 | .remove = highlander_i2c_remove, |
469 | }; | 469 | }; |
470 | 470 | ||
471 | module_platform_driver(highlander_i2c_driver); | 471 | module_platform_driver(highlander_i2c_driver); |