From: Tomi Valkeinen Date: Fri, 19 Oct 2012 12:06:07 +0000 (+0300) Subject: OMAPDSS: DISPC: use WARN_ON() in dispc_mgr_go X-Git-Tag: v3.8-rc1~96^2^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c91ee8cc9fa785ed9c4ad250d3f293f279153fe;p=profile%2Fivi%2Fkernel-x86-ivi.git OMAPDSS: DISPC: use WARN_ON() in dispc_mgr_go dispc_mgr_go() should never be called with manager output disabled or if the GO bit is already set. Change the current silent returns to WARN_ONs. Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c index 942dd16..5319614 100644 --- a/drivers/video/omap2/dss/dispc.c +++ b/drivers/video/omap2/dss/dispc.c @@ -569,20 +569,8 @@ bool dispc_mgr_go_busy(enum omap_channel channel) void dispc_mgr_go(enum omap_channel channel) { - bool enable_bit, go_bit; - - /* if the channel is not enabled, we don't need GO */ - enable_bit = mgr_fld_read(channel, DISPC_MGR_FLD_ENABLE) == 1; - - if (!enable_bit) - return; - - go_bit = mgr_fld_read(channel, DISPC_MGR_FLD_GO) == 1; - - if (go_bit) { - DSSERR("GO bit not down for channel %d\n", channel); - return; - } + WARN_ON(dispc_mgr_is_enabled(channel) == false); + WARN_ON(dispc_mgr_go_busy(channel)); DSSDBG("GO %s\n", mgr_desc[channel].name);