]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
regulator: tps65910: dt: support when "regulators" node found
authorLaxman Dewangan <ldewangan@nvidia.com>
Sun, 20 May 2012 16:18:49 +0000 (21:48 +0530)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sun, 20 May 2012 17:22:41 +0000 (18:22 +0100)
The device tree binding for the tps65910 is described as:
tps65911 {
reg = <0x2d>
:::::::::
regulators {
compatible = "ti,tps65911";
ldo1_reg: ldo1 {
/** regulator entry */
};

ldo2_reg: ldo2 {
/** regulator entry */
};
::::::::::
};
};

Support the regulators functionality only when there is "regulators"
child node available for tps65910.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/tps65910-regulator.c

index 11af48e7186a33c202f8735336970a0c191b5f41..8b31f073c6f354192b5817cfa1c13a3e8be20168 100644 (file)
@@ -1090,6 +1090,10 @@ static struct tps65910_board *tps65910_parse_dt_reg_data(
        }
 
        regulators = of_find_node_by_name(np, "regulators");
+       if (!regulators) {
+               dev_err(&pdev->dev, "regulator node not found\n");
+               return NULL;
+       }
 
        switch (tps65910_chip_id(tps65910)) {
        case TPS65910: