diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-rcar.c')
-rw-r--r-- | drivers/i2c/busses/i2c-rcar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-rcar.c b/drivers/i2c/busses/i2c-rcar.c index 72a8071a5556..9bd4d73d29e3 100644 --- a/drivers/i2c/busses/i2c-rcar.c +++ b/drivers/i2c/busses/i2c-rcar.c | |||
@@ -613,7 +613,7 @@ static const struct i2c_algorithm rcar_i2c_algo = { | |||
613 | .functionality = rcar_i2c_func, | 613 | .functionality = rcar_i2c_func, |
614 | }; | 614 | }; |
615 | 615 | ||
616 | static int __devinit rcar_i2c_probe(struct platform_device *pdev) | 616 | static int rcar_i2c_probe(struct platform_device *pdev) |
617 | { | 617 | { |
618 | struct i2c_rcar_platform_data *pdata = pdev->dev.platform_data; | 618 | struct i2c_rcar_platform_data *pdata = pdev->dev.platform_data; |
619 | struct rcar_i2c_priv *priv; | 619 | struct rcar_i2c_priv *priv; |
@@ -682,7 +682,7 @@ static int __devinit rcar_i2c_probe(struct platform_device *pdev) | |||
682 | return 0; | 682 | return 0; |
683 | } | 683 | } |
684 | 684 | ||
685 | static int __devexit rcar_i2c_remove(struct platform_device *pdev) | 685 | static int rcar_i2c_remove(struct platform_device *pdev) |
686 | { | 686 | { |
687 | struct rcar_i2c_priv *priv = platform_get_drvdata(pdev); | 687 | struct rcar_i2c_priv *priv = platform_get_drvdata(pdev); |
688 | struct device *dev = &pdev->dev; | 688 | struct device *dev = &pdev->dev; |
@@ -699,7 +699,7 @@ static struct platform_driver rcar_i2c_driver = { | |||
699 | .owner = THIS_MODULE, | 699 | .owner = THIS_MODULE, |
700 | }, | 700 | }, |
701 | .probe = rcar_i2c_probe, | 701 | .probe = rcar_i2c_probe, |
702 | .remove = __devexit_p(rcar_i2c_remove), | 702 | .remove = rcar_i2c_remove, |
703 | }; | 703 | }; |
704 | 704 | ||
705 | module_platform_driver(rcar_i2c_driver); | 705 | module_platform_driver(rcar_i2c_driver); |