diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-03-14 14:47:29 +0100 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-17 13:00:39 +0200 |
commit | c6ca5b2201289995f70ee19c0eaf4b5f2ae09923 (patch) | |
tree | acf7cce67a9df7ec5bf959bc9af390afc510aa2d /drivers/video/omap2/dss/sdi.c | |
parent | OMAPDSS: add pdata->default_display_name (diff) | |
download | linux-c6ca5b2201289995f70ee19c0eaf4b5f2ae09923.tar.xz linux-c6ca5b2201289995f70ee19c0eaf4b5f2ae09923.zip |
OMAPDSS: only probe pdata if there's one
omapdss output drivers always read the platform data. This crashes when
there's no platform data when using DT.
Add a check to read the platform data only if it exists.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/sdi.c')
-rw-r--r-- | drivers/video/omap2/dss/sdi.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/video/omap2/dss/sdi.c b/drivers/video/omap2/dss/sdi.c index 0bcd30272f69..6277c0593854 100644 --- a/drivers/video/omap2/dss/sdi.c +++ b/drivers/video/omap2/dss/sdi.c @@ -365,13 +365,17 @@ static int omap_sdi_probe(struct platform_device *pdev) sdi_init_output(pdev); - r = sdi_probe_pdata(pdev); - if (r) { - sdi_uninit_output(pdev); - return r; + if (pdev->dev.platform_data) { + r = sdi_probe_pdata(pdev); + if (r) + goto err_probe; } return 0; + +err_probe: + sdi_uninit_output(pdev); + return r; } static int __exit omap_sdi_remove(struct platform_device *pdev) |