2009-04-28 11:34:13

by Philipp Zabel

[permalink] [raw]
Subject: [PATCH 1/1] regulator/bq24022: fix bug in is_enabled function

This seems to be fallout from last October's regulator core rework.
It got noticed only because of recent regulator framework changes.

Signed-off-by: Philipp Zabel <[email protected]>
---
drivers/regulator/bq24022.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/bq24022.c b/drivers/regulator/bq24022.c
index 7ecb820..d08cd9b 100644
--- a/drivers/regulator/bq24022.c
+++ b/drivers/regulator/bq24022.c
@@ -61,8 +61,7 @@ static int bq24022_disable(struct regulator_dev *rdev)

static int bq24022_is_enabled(struct regulator_dev *rdev)
{
- struct platform_device *pdev = rdev_get_drvdata(rdev);
- struct bq24022_mach_info *pdata = pdev->dev.platform_data;
+ struct bq24022_mach_info *pdata = rdev_get_drvdata(rdev);

return !gpio_get_value(pdata->gpio_nce);
}
--
1.6.2.4


2009-04-28 12:46:38

by Liam Girdwood

[permalink] [raw]
Subject: Re: [PATCH 1/1] regulator/bq24022: fix bug in is_enabled function

On Tue, 2009-04-28 at 13:34 +0200, Philipp Zabel wrote:
> This seems to be fallout from last October's regulator core rework.
> It got noticed only because of recent regulator framework changes.
>
> Signed-off-by: Philipp Zabel <[email protected]>
> ---
> drivers/regulator/bq24022.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>

Applied.

Thanks

Liam