Commit 7f51cf2e authored by Dong Aisheng's avatar Dong Aisheng Committed by Mark Brown

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: default avatarDong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent d00b7461
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment