regulator: bd70528: drop struct bd70528
authorMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Thu, 14 Feb 2019 13:15:50 +0000 (15:15 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 14 Feb 2019 14:45:30 +0000 (14:45 +0000)
As a result of exporting the bd70528 specific locking functions
we no longer need struct bd70528. Remove references to
struct bd70528 from bd70528 regulator.

Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/bd70528-regulator.c

index 72c7f9aa84f37a2fb2bfe6bc6782560d374d0b8a..30e3ed430a8a64a5436b55a21624934563825473 100644 (file)
@@ -246,7 +246,7 @@ static const struct regulator_desc bd70528_desc[] = {
 
 static int bd70528_probe(struct platform_device *pdev)
 {
-       struct bd70528 *bd70528;
+       struct rohm_regmap_dev *bd70528;
        int i;
        struct regulator_config config = {
                .dev = pdev->dev.parent,
@@ -258,7 +258,7 @@ static int bd70528_probe(struct platform_device *pdev)
                return -EINVAL;
        }
 
-       config.regmap = bd70528->chip.regmap;
+       config.regmap = bd70528->regmap;
 
        for (i = 0; i < ARRAY_SIZE(bd70528_desc); i++) {
                struct regulator_dev *rdev;