diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-07 14:42:47 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-09-11 04:15:03 -0400 |
commit | 5656098e198e793f7b43a11c301b5025c6e51c9a (patch) | |
tree | d94203bb1ba9f0e49026f138bb99221365f51cb3 /drivers/regulator/wm831x-dcdc.c | |
parent | c04a9cb813f124abcfad50f93b101ceaee8f3b9f (diff) |
mfd: wm831x: Convert to IORESOURCE_REG
This was originally written by Russell King who unfortunately found
himself unable to take the patch futher.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Tested-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/regulator/wm831x-dcdc.c')
-rw-r--r-- | drivers/regulator/wm831x-dcdc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/regulator/wm831x-dcdc.c b/drivers/regulator/wm831x-dcdc.c index 7413885be01b..64111f4935a4 100644 --- a/drivers/regulator/wm831x-dcdc.c +++ b/drivers/regulator/wm831x-dcdc.c | |||
@@ -476,9 +476,9 @@ static __devinit int wm831x_buckv_probe(struct platform_device *pdev) | |||
476 | 476 | ||
477 | dcdc->wm831x = wm831x; | 477 | dcdc->wm831x = wm831x; |
478 | 478 | ||
479 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 479 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
480 | if (res == NULL) { | 480 | if (res == NULL) { |
481 | dev_err(&pdev->dev, "No I/O resource\n"); | 481 | dev_err(&pdev->dev, "No REG resource\n"); |
482 | ret = -EINVAL; | 482 | ret = -EINVAL; |
483 | goto err; | 483 | goto err; |
484 | } | 484 | } |
@@ -651,9 +651,9 @@ static __devinit int wm831x_buckp_probe(struct platform_device *pdev) | |||
651 | 651 | ||
652 | dcdc->wm831x = wm831x; | 652 | dcdc->wm831x = wm831x; |
653 | 653 | ||
654 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 654 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
655 | if (res == NULL) { | 655 | if (res == NULL) { |
656 | dev_err(&pdev->dev, "No I/O resource\n"); | 656 | dev_err(&pdev->dev, "No REG resource\n"); |
657 | ret = -EINVAL; | 657 | ret = -EINVAL; |
658 | goto err; | 658 | goto err; |
659 | } | 659 | } |
@@ -795,9 +795,9 @@ static __devinit int wm831x_boostp_probe(struct platform_device *pdev) | |||
795 | 795 | ||
796 | dcdc->wm831x = wm831x; | 796 | dcdc->wm831x = wm831x; |
797 | 797 | ||
798 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 798 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
799 | if (res == NULL) { | 799 | if (res == NULL) { |
800 | dev_err(&pdev->dev, "No I/O resource\n"); | 800 | dev_err(&pdev->dev, "No REG resource\n"); |
801 | ret = -EINVAL; | 801 | ret = -EINVAL; |
802 | goto err; | 802 | goto err; |
803 | } | 803 | } |