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-ldo.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-ldo.c')
-rw-r--r-- | drivers/regulator/wm831x-ldo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c index 5cb70ca1e98d..da73daf2eb7c 100644 --- a/drivers/regulator/wm831x-ldo.c +++ b/drivers/regulator/wm831x-ldo.c | |||
@@ -269,9 +269,9 @@ static __devinit int wm831x_gp_ldo_probe(struct platform_device *pdev) | |||
269 | 269 | ||
270 | ldo->wm831x = wm831x; | 270 | ldo->wm831x = wm831x; |
271 | 271 | ||
272 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 272 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
273 | if (res == NULL) { | 273 | if (res == NULL) { |
274 | dev_err(&pdev->dev, "No I/O resource\n"); | 274 | dev_err(&pdev->dev, "No REG resource\n"); |
275 | ret = -EINVAL; | 275 | ret = -EINVAL; |
276 | goto err; | 276 | goto err; |
277 | } | 277 | } |
@@ -520,9 +520,9 @@ static __devinit int wm831x_aldo_probe(struct platform_device *pdev) | |||
520 | 520 | ||
521 | ldo->wm831x = wm831x; | 521 | ldo->wm831x = wm831x; |
522 | 522 | ||
523 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 523 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
524 | if (res == NULL) { | 524 | if (res == NULL) { |
525 | dev_err(&pdev->dev, "No I/O resource\n"); | 525 | dev_err(&pdev->dev, "No REG resource\n"); |
526 | ret = -EINVAL; | 526 | ret = -EINVAL; |
527 | goto err; | 527 | goto err; |
528 | } | 528 | } |
@@ -675,9 +675,9 @@ static __devinit int wm831x_alive_ldo_probe(struct platform_device *pdev) | |||
675 | 675 | ||
676 | ldo->wm831x = wm831x; | 676 | ldo->wm831x = wm831x; |
677 | 677 | ||
678 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 678 | res = platform_get_resource(pdev, IORESOURCE_REG, 0); |
679 | if (res == NULL) { | 679 | if (res == NULL) { |
680 | dev_err(&pdev->dev, "No I/O resource\n"); | 680 | dev_err(&pdev->dev, "No REG resource\n"); |
681 | ret = -EINVAL; | 681 | ret = -EINVAL; |
682 | goto err; | 682 | goto err; |
683 | } | 683 | } |