diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-11-30 14:01:56 +0000 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-12-02 19:37:16 +0000 |
commit | e8092da92e1fd38dc7c38a4eeae93eaa21764584 (patch) | |
tree | 659595a45e74ed41493e0aacdd6a06010fbefd15 | |
parent | 2127816366e0ffbc1426fa69e7b9b2bebd2e2288 (diff) | |
download | linux-3.10-e8092da92e1fd38dc7c38a4eeae93eaa21764584.tar.gz linux-3.10-e8092da92e1fd38dc7c38a4eeae93eaa21764584.tar.bz2 linux-3.10-e8092da92e1fd38dc7c38a4eeae93eaa21764584.zip |
regulator: Initialise wm831x structure pointor for ISINK driver
The version that made it into mainline missed the initialisation of the
chip handle.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
-rw-r--r-- | drivers/regulator/wm831x-isink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/wm831x-isink.c b/drivers/regulator/wm831x-isink.c index 1d8d9879d3a..48857008758 100644 --- a/drivers/regulator/wm831x-isink.c +++ b/drivers/regulator/wm831x-isink.c @@ -167,6 +167,8 @@ static __devinit int wm831x_isink_probe(struct platform_device *pdev) return -ENOMEM; } + isink->wm831x = wm831x; + res = platform_get_resource(pdev, IORESOURCE_IO, 0); if (res == NULL) { dev_err(&pdev->dev, "No I/O resource\n"); |