aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@nokia.com>2010-04-22 22:50:05 +0200
committerTomi Valkeinen <tomi.valkeinen@nokia.com>2010-08-05 16:51:43 +0300
commitebf0a3fef2240983fbc994f15d8c3d8a20102480 (patch)
tree9061ecd32f75a31b4f3f3b696954e9c99c83f330 /drivers/video
parentOMAP: DSS2: DSI: Disable PCKFREE on error (diff)
downloadlinux-dev-ebf0a3fef2240983fbc994f15d8c3d8a20102480.tar.xz
linux-dev-ebf0a3fef2240983fbc994f15d8c3d8a20102480.zip
OMAP: DSS2: DSI: Print an error message if DSI clock calc fails
Print an error message if dsi_calc_clock_rates() fails just like it's done when dispc_calc_clock_rates() fails. Signed-off-by: Ville Syrjälä <ville.syrjala@nokia.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/omap2/dss/dsi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index 72b859cc3a5c..04d84d13488b 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -2967,8 +2967,10 @@ static int dsi_configure_dsi_clocks(struct omap_dss_device *dssdev)
cinfo.regm3 = dssdev->phy.dsi.div.regm3;
cinfo.regm4 = dssdev->phy.dsi.div.regm4;
r = dsi_calc_clock_rates(&cinfo);
- if (r)
+ if (r) {
+ DSSERR("Failed to calc dsi clocks\n");
return r;
+ }
r = dsi_pll_set_clock_div(&cinfo);
if (r) {