Browse Source

regulator: anatop: check return value of of_get_regulator_init_data

Should check the return value of of_get_regulator_init_data before
using it.

Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Dong Aisheng 8 years ago
parent
commit
7f51cf2ea7
1 changed files with 3 additions and 0 deletions
  1. 3 0
      drivers/regulator/anatop-regulator.c

+ 3 - 0
drivers/regulator/anatop-regulator.c

@@ -200,6 +200,9 @@ static int anatop_regulator_probe(struct platform_device *pdev)
 	rdesc->owner = THIS_MODULE;
 
 	initdata = of_get_regulator_init_data(dev, np, rdesc);
+	if (!initdata)
+		return -ENOMEM;
+
 	initdata->supply_regulator = "vin";
 	sreg->initdata = initdata;