aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2013-10-18 03:46:33 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-10-29 07:36:17 -0400
commitcc9fd77c08940c869cdfa38442f32458c5be900c (patch)
tree98f5c55d72169abbca6b9c6186615dc6b5186bed
parent477fed70295dd7597b258cd509abac56c2081527 (diff)
OMAPDSS: connector-dvi: fix releasing i2c_adapter
i2c adapter is not released correctly on error paths. Fix this. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r--drivers/video/omap2/displays-new/connector-dvi.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/video/omap2/displays-new/connector-dvi.c b/drivers/video/omap2/displays-new/connector-dvi.c
index bc5f8ceda371..5641a23b78d1 100644
--- a/drivers/video/omap2/displays-new/connector-dvi.c
+++ b/drivers/video/omap2/displays-new/connector-dvi.c
@@ -262,6 +262,9 @@ static int dvic_probe_pdata(struct platform_device *pdev)
262 262
263 in = omap_dss_find_output(pdata->source); 263 in = omap_dss_find_output(pdata->source);
264 if (in == NULL) { 264 if (in == NULL) {
265 if (ddata->i2c_adapter)
266 i2c_put_adapter(ddata->i2c_adapter);
267
265 dev_err(&pdev->dev, "Failed to find video source\n"); 268 dev_err(&pdev->dev, "Failed to find video source\n");
266 return -ENODEV; 269 return -ENODEV;
267 } 270 }
@@ -313,6 +316,10 @@ static int dvic_probe(struct platform_device *pdev)
313 316
314err_reg: 317err_reg:
315 omap_dss_put_device(ddata->in); 318 omap_dss_put_device(ddata->in);
319
320 if (ddata->i2c_adapter)
321 i2c_put_adapter(ddata->i2c_adapter);
322
316 return r; 323 return r;
317} 324}
318 325