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 f9399d163af..72a8071a555 100644 --- a/drivers/i2c/busses/i2c-rcar.c +++ b/drivers/i2c/busses/i2c-rcar.c | |||
@@ -642,7 +642,7 @@ static int __devinit rcar_i2c_probe(struct platform_device *pdev) | |||
642 | if (ret < 0) | 642 | if (ret < 0) |
643 | return ret; | 643 | return ret; |
644 | 644 | ||
645 | priv->io = devm_ioremap(dev, res->start, resource_size(res)); | 645 | priv->io = devm_request_and_ioremap(dev, res); |
646 | if (!priv->io) { | 646 | if (!priv->io) { |
647 | dev_err(dev, "cannot ioremap\n"); | 647 | dev_err(dev, "cannot ioremap\n"); |
648 | return -ENODEV; | 648 | return -ENODEV; |
@@ -693,7 +693,7 @@ static int __devexit rcar_i2c_remove(struct platform_device *pdev) | |||
693 | return 0; | 693 | return 0; |
694 | } | 694 | } |
695 | 695 | ||
696 | static struct platform_driver rcar_i2c_drv = { | 696 | static struct platform_driver rcar_i2c_driver = { |
697 | .driver = { | 697 | .driver = { |
698 | .name = "i2c-rcar", | 698 | .name = "i2c-rcar", |
699 | .owner = THIS_MODULE, | 699 | .owner = THIS_MODULE, |
@@ -702,7 +702,7 @@ static struct platform_driver rcar_i2c_drv = { | |||
702 | .remove = __devexit_p(rcar_i2c_remove), | 702 | .remove = __devexit_p(rcar_i2c_remove), |
703 | }; | 703 | }; |
704 | 704 | ||
705 | module_platform_driver(rcar_i2c_drv); | 705 | module_platform_driver(rcar_i2c_driver); |
706 | 706 | ||
707 | MODULE_LICENSE("GPL"); | 707 | MODULE_LICENSE("GPL"); |
708 | MODULE_DESCRIPTION("Renesas R-Car I2C bus driver"); | 708 | MODULE_DESCRIPTION("Renesas R-Car I2C bus driver"); |