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>
This commit is contained in:
Родитель
d00b74613f
Коммит
7f51cf2ea7
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче