]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
regulator: set max8998->dev to &pdev->dev.
authorAxel Lin <axel.lin@gmail.com>
Fri, 27 Aug 2010 08:37:34 +0000 (16:37 +0800)
committerLiam Girdwood <lrg@slimlogic.co.uk>
Wed, 1 Sep 2010 11:59:34 +0000 (12:59 +0100)
max8998->dev is NULL in current implementation, set it to &pdev->dev.

regulator_register() still return success if max8998->dev is NULL,
but rdev->dev.parent will be set to NULL which is incorrect.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
drivers/regulator/max8998.c

index 8b9bfdf8ffe5b6953cecf830f3cda45c12e9126e..a1baf1fbe00472e71845591e2d427715a720a226 100644 (file)
@@ -557,6 +557,7 @@ static __devinit int max8998_pmic_probe(struct platform_device *pdev)
        }
 
        rdev = max8998->rdev;
+       max8998->dev = &pdev->dev;
        max8998->iodev = iodev;
        max8998->num_regulators = pdata->num_regulators;
        platform_set_drvdata(pdev, max8998);