media: platform: ti: Add missing check for devm_regulator_get
[ Upstream commitda8e05f84a
] Add check for the return value of devm_regulator_get since it may return error pointer. Fixes:448de7e785
("[media] omap3isp: OMAP3 ISP core") Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
954f27086c
Коммит
60abe015c3
|
@ -2306,7 +2306,16 @@ static int isp_probe(struct platform_device *pdev)
|
|||
|
||||
/* Regulators */
|
||||
isp->isp_csiphy1.vdd = devm_regulator_get(&pdev->dev, "vdd-csiphy1");
|
||||
if (IS_ERR(isp->isp_csiphy1.vdd)) {
|
||||
ret = PTR_ERR(isp->isp_csiphy1.vdd);
|
||||
goto error;
|
||||
}
|
||||
|
||||
isp->isp_csiphy2.vdd = devm_regulator_get(&pdev->dev, "vdd-csiphy2");
|
||||
if (IS_ERR(isp->isp_csiphy2.vdd)) {
|
||||
ret = PTR_ERR(isp->isp_csiphy2.vdd);
|
||||
goto error;
|
||||
}
|
||||
|
||||
/* Clocks
|
||||
*
|
||||
|
|
Загрузка…
Ссылка в новой задаче