Commit 0bcfdba6 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Tomi Valkeinen

OMAPDSS: DISPC: Remove boolean comparisons

Boolean tests do not need explicit comparison to true or false.
Signed-off-by: default avatarLuis de Bethencourt <luisbg@osg.samsung.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 00355412
...@@ -476,7 +476,7 @@ static void dispc_mgr_disable_lcd_out(enum omap_channel channel) ...@@ -476,7 +476,7 @@ static void dispc_mgr_disable_lcd_out(enum omap_channel channel)
int r; int r;
u32 irq; u32 irq;
if (dispc_mgr_is_enabled(channel) == false) if (!dispc_mgr_is_enabled(channel))
return; return;
/* /*
...@@ -524,7 +524,7 @@ static void dispc_mgr_enable_digit_out(void) ...@@ -524,7 +524,7 @@ static void dispc_mgr_enable_digit_out(void)
int r; int r;
u32 irq_mask; u32 irq_mask;
if (dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT) == true) if (dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT))
return; return;
/* /*
...@@ -562,7 +562,7 @@ static void dispc_mgr_disable_digit_out(void) ...@@ -562,7 +562,7 @@ static void dispc_mgr_disable_digit_out(void)
u32 irq_mask; u32 irq_mask;
int num_irqs; int num_irqs;
if (dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT) == false) if (!dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT))
return; return;
/* /*
......
...@@ -581,7 +581,7 @@ EXPORT_SYMBOL(dispc_mgr_go_busy); ...@@ -581,7 +581,7 @@ EXPORT_SYMBOL(dispc_mgr_go_busy);
void dispc_mgr_go(enum omap_channel channel) void dispc_mgr_go(enum omap_channel channel)
{ {
WARN_ON(dispc_mgr_is_enabled(channel) == false); WARN_ON(!dispc_mgr_is_enabled(channel));
WARN_ON(dispc_mgr_go_busy(channel)); WARN_ON(dispc_mgr_go_busy(channel));
DSSDBG("GO %s\n", mgr_desc[channel].name); DSSDBG("GO %s\n", mgr_desc[channel].name);
...@@ -3285,7 +3285,7 @@ void dispc_mgr_set_timings(enum omap_channel channel, ...@@ -3285,7 +3285,7 @@ void dispc_mgr_set_timings(enum omap_channel channel,
DSSDBG("hsync %luHz, vsync %luHz\n", ht, vt); DSSDBG("hsync %luHz, vsync %luHz\n", ht, vt);
} else { } else {
if (t.interlace == true) if (t.interlace)
t.y_res /= 2; t.y_res /= 2;
} }
...@@ -3302,7 +3302,7 @@ static void dispc_mgr_set_lcd_divisor(enum omap_channel channel, u16 lck_div, ...@@ -3302,7 +3302,7 @@ static void dispc_mgr_set_lcd_divisor(enum omap_channel channel, u16 lck_div,
dispc_write_reg(DISPC_DIVISORo(channel), dispc_write_reg(DISPC_DIVISORo(channel),
FLD_VAL(lck_div, 23, 16) | FLD_VAL(pck_div, 7, 0)); FLD_VAL(lck_div, 23, 16) | FLD_VAL(pck_div, 7, 0));
if (dss_has_feature(FEAT_CORE_CLK_DIV) == false && if (!dss_has_feature(FEAT_CORE_CLK_DIV) &&
channel == OMAP_DSS_CHANNEL_LCD) channel == OMAP_DSS_CHANNEL_LCD)
dispc.core_clk_rate = dispc_fclk_rate() / lck_div; dispc.core_clk_rate = dispc_fclk_rate() / lck_div;
} }
......
...@@ -210,7 +210,7 @@ static int dss_mgr_check_lcd_config(struct omap_overlay_manager *mgr, ...@@ -210,7 +210,7 @@ static int dss_mgr_check_lcd_config(struct omap_overlay_manager *mgr,
return -EINVAL; return -EINVAL;
/* fifohandcheck should be used only with stallmode */ /* fifohandcheck should be used only with stallmode */
if (stallmode == false && fifohandcheck == true) if (!stallmode && fifohandcheck)
return -EINVAL; return -EINVAL;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment