Commit 6aa66f5c authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAPDSS: VENC: Add error handling for venc_probe_pdata

Add proper error handling for venc_probe_pdata(). This will cause
EPROBE_DEFER to be properly passed upwards, causing the VENC driver to be
probed again later if a resource was missing.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent c0980297
...@@ -754,7 +754,7 @@ static struct omap_dss_device *venc_find_dssdev(struct platform_device *pdev) ...@@ -754,7 +754,7 @@ static struct omap_dss_device *venc_find_dssdev(struct platform_device *pdev)
return def_dssdev; return def_dssdev;
} }
static void venc_probe_pdata(struct platform_device *vencdev) static int venc_probe_pdata(struct platform_device *vencdev)
{ {
struct omap_dss_device *plat_dssdev; struct omap_dss_device *plat_dssdev;
struct omap_dss_device *dssdev; struct omap_dss_device *dssdev;
...@@ -763,11 +763,11 @@ static void venc_probe_pdata(struct platform_device *vencdev) ...@@ -763,11 +763,11 @@ static void venc_probe_pdata(struct platform_device *vencdev)
plat_dssdev = venc_find_dssdev(vencdev); plat_dssdev = venc_find_dssdev(vencdev);
if (!plat_dssdev) if (!plat_dssdev)
return; return 0;
dssdev = dss_alloc_and_init_device(&vencdev->dev); dssdev = dss_alloc_and_init_device(&vencdev->dev);
if (!dssdev) if (!dssdev)
return; return -ENOMEM;
dss_copy_device_pdata(dssdev, plat_dssdev); dss_copy_device_pdata(dssdev, plat_dssdev);
...@@ -775,7 +775,7 @@ static void venc_probe_pdata(struct platform_device *vencdev) ...@@ -775,7 +775,7 @@ static void venc_probe_pdata(struct platform_device *vencdev)
if (r) { if (r) {
DSSERR("device %s init failed: %d\n", dssdev->name, r); DSSERR("device %s init failed: %d\n", dssdev->name, r);
dss_put_device(dssdev); dss_put_device(dssdev);
return; return r;
} }
r = omapdss_output_set_device(&venc.output, dssdev); r = omapdss_output_set_device(&venc.output, dssdev);
...@@ -783,7 +783,7 @@ static void venc_probe_pdata(struct platform_device *vencdev) ...@@ -783,7 +783,7 @@ static void venc_probe_pdata(struct platform_device *vencdev)
DSSERR("failed to connect output to new device: %s\n", DSSERR("failed to connect output to new device: %s\n",
dssdev->name); dssdev->name);
dss_put_device(dssdev); dss_put_device(dssdev);
return; return r;
} }
r = dss_add_device(dssdev); r = dss_add_device(dssdev);
...@@ -791,8 +791,10 @@ static void venc_probe_pdata(struct platform_device *vencdev) ...@@ -791,8 +791,10 @@ static void venc_probe_pdata(struct platform_device *vencdev)
DSSERR("device %s register failed: %d\n", dssdev->name, r); DSSERR("device %s register failed: %d\n", dssdev->name, r);
omapdss_output_unset_device(&venc.output); omapdss_output_unset_device(&venc.output);
dss_put_device(dssdev); dss_put_device(dssdev);
return; return r;
} }
return 0;
} }
static void venc_init_output(struct platform_device *pdev) static void venc_init_output(struct platform_device *pdev)
...@@ -864,7 +866,13 @@ static int omap_venchw_probe(struct platform_device *pdev) ...@@ -864,7 +866,13 @@ static int omap_venchw_probe(struct platform_device *pdev)
venc_init_output(pdev); venc_init_output(pdev);
venc_probe_pdata(pdev); r = venc_probe_pdata(pdev);
if (r) {
venc_panel_exit();
venc_uninit_output(pdev);
pm_runtime_disable(&pdev->dev);
return r;
}
return 0; return 0;
......
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