Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 371668
b: refs/heads/master
c: e108627
h: refs/heads/master
v: v3
  • Loading branch information
Tomi Valkeinen committed May 2, 2013
1 parent d98c43f commit fd974a0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcb734d2a1ef1b40fd7600b0f4f9225484572c67
refs/heads/master: e1086278e9ab7c75edb6a9c0cdbdc452be25eb8d
22 changes: 15 additions & 7 deletions trunk/drivers/video/omap2/dss/sdi.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ static struct omap_dss_device *sdi_find_dssdev(struct platform_device *pdev)
return def_dssdev;
}

static void sdi_probe_pdata(struct platform_device *sdidev)
static int sdi_probe_pdata(struct platform_device *sdidev)
{
struct omap_dss_device *plat_dssdev;
struct omap_dss_device *dssdev;
Expand All @@ -305,36 +305,38 @@ static void sdi_probe_pdata(struct platform_device *sdidev)
plat_dssdev = sdi_find_dssdev(sdidev);

if (!plat_dssdev)
return;
return 0;

dssdev = dss_alloc_and_init_device(&sdidev->dev);
if (!dssdev)
return;
return -ENOMEM;

dss_copy_device_pdata(dssdev, plat_dssdev);

r = sdi_init_display(dssdev);
if (r) {
DSSERR("device %s init failed: %d\n", dssdev->name, r);
dss_put_device(dssdev);
return;
return r;
}

r = omapdss_output_set_device(&sdi.output, dssdev);
if (r) {
DSSERR("failed to connect output to new device: %s\n",
dssdev->name);
dss_put_device(dssdev);
return;
return r;
}

r = dss_add_device(dssdev);
if (r) {
DSSERR("device %s register failed: %d\n", dssdev->name, r);
omapdss_output_unset_device(&sdi.output);
dss_put_device(dssdev);
return;
return r;
}

return 0;
}

static void sdi_init_output(struct platform_device *pdev)
Expand All @@ -359,9 +361,15 @@ static void __exit sdi_uninit_output(struct platform_device *pdev)

static int omap_sdi_probe(struct platform_device *pdev)
{
int r;

sdi_init_output(pdev);

sdi_probe_pdata(pdev);
r = sdi_probe_pdata(pdev);
if (r) {
sdi_uninit_output(pdev);
return r;
}

return 0;
}
Expand Down

0 comments on commit fd974a0

Please sign in to comment.