diff options
-rw-r--r-- | drivers/regulator/mc13xxx-regulator-core.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/regulator/mc13xxx-regulator-core.c b/drivers/regulator/mc13xxx-regulator-core.c index 4498a3f0733d..bf75fcabfa3c 100644 --- a/drivers/regulator/mc13xxx-regulator-core.c +++ b/drivers/regulator/mc13xxx-regulator-core.c | |||
@@ -167,8 +167,10 @@ int mc13xxx_get_num_regulators_dt(struct platform_device *pdev) | |||
167 | struct device_node *parent; | 167 | struct device_node *parent; |
168 | int num; | 168 | int num; |
169 | 169 | ||
170 | of_node_get(pdev->dev.parent->of_node); | 170 | if (!pdev->dev.of_node) |
171 | parent = of_get_child_by_name(pdev->dev.parent->of_node, "regulators"); | 171 | return -ENODEV; |
172 | |||
173 | parent = of_get_child_by_name(pdev->dev.of_node, "regulators"); | ||
172 | if (!parent) | 174 | if (!parent) |
173 | return -ENODEV; | 175 | return -ENODEV; |
174 | 176 | ||
@@ -187,8 +189,10 @@ struct mc13xxx_regulator_init_data *mc13xxx_parse_regulators_dt( | |||
187 | struct device_node *parent, *child; | 189 | struct device_node *parent, *child; |
188 | int i, parsed = 0; | 190 | int i, parsed = 0; |
189 | 191 | ||
190 | of_node_get(pdev->dev.parent->of_node); | 192 | if (!pdev->dev.of_node) |
191 | parent = of_get_child_by_name(pdev->dev.parent->of_node, "regulators"); | 193 | return NULL; |
194 | |||
195 | parent = of_get_child_by_name(pdev->dev.of_node, "regulators"); | ||
192 | if (!parent) | 196 | if (!parent) |
193 | return NULL; | 197 | return NULL; |
194 | 198 | ||