Commit 7e436bb2 authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAPDSS: VENC: clean up regulator init

Clean up the VENC driver's regulator init to remove the (unused)
omap_dss_device parameter, renaming the function to a more sensible
name, and making the code slightly clearer.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 46c4b645
...@@ -633,23 +633,22 @@ void omapdss_venc_invert_vid_out_polarity(struct omap_dss_device *dssdev, ...@@ -633,23 +633,22 @@ void omapdss_venc_invert_vid_out_polarity(struct omap_dss_device *dssdev,
mutex_unlock(&venc.venc_lock); mutex_unlock(&venc.venc_lock);
} }
static int venc_init_display(struct omap_dss_device *dssdev) static int venc_init_regulator(void)
{ {
DSSDBG("init_display\n"); struct regulator *vdda_dac;
if (venc.vdda_dac_reg == NULL) { if (venc.vdda_dac_reg != NULL)
struct regulator *vdda_dac; return 0;
vdda_dac = regulator_get(&venc.pdev->dev, "vdda_dac");
if (IS_ERR(vdda_dac)) { vdda_dac = devm_regulator_get(&venc.pdev->dev, "vdda_dac");
DSSERR("can't get VDDA_DAC regulator\n");
return PTR_ERR(vdda_dac);
}
venc.vdda_dac_reg = vdda_dac; if (IS_ERR(vdda_dac)) {
DSSERR("can't get VDDA_DAC regulator\n");
return PTR_ERR(vdda_dac);
} }
venc.vdda_dac_reg = vdda_dac;
return 0; return 0;
} }
...@@ -765,19 +764,16 @@ static int venc_probe_pdata(struct platform_device *vencdev) ...@@ -765,19 +764,16 @@ static int venc_probe_pdata(struct platform_device *vencdev)
if (!plat_dssdev) if (!plat_dssdev)
return 0; return 0;
r = venc_init_regulator();
if (r)
return r;
dssdev = dss_alloc_and_init_device(&vencdev->dev); dssdev = dss_alloc_and_init_device(&vencdev->dev);
if (!dssdev) if (!dssdev)
return -ENOMEM; return -ENOMEM;
dss_copy_device_pdata(dssdev, plat_dssdev); dss_copy_device_pdata(dssdev, plat_dssdev);
r = venc_init_display(dssdev);
if (r) {
DSSERR("device %s init failed: %d\n", dssdev->name, r);
dss_put_device(dssdev);
return r;
}
r = omapdss_output_set_device(&venc.output, dssdev); r = omapdss_output_set_device(&venc.output, dssdev);
if (r) { if (r) {
DSSERR("failed to connect output to new device: %s\n", DSSERR("failed to connect output to new device: %s\n",
...@@ -887,11 +883,6 @@ static int __exit omap_venchw_remove(struct platform_device *pdev) ...@@ -887,11 +883,6 @@ static int __exit omap_venchw_remove(struct platform_device *pdev)
{ {
dss_unregister_child_devices(&pdev->dev); dss_unregister_child_devices(&pdev->dev);
if (venc.vdda_dac_reg != NULL) {
regulator_put(venc.vdda_dac_reg);
venc.vdda_dac_reg = NULL;
}
venc_panel_exit(); venc_panel_exit();
venc_uninit_output(pdev); venc_uninit_output(pdev);
......
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