diff options
author | Carlos Lopez <carlos.cruz@sasken.com> | 2010-04-25 06:53:35 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-05-18 08:06:06 -0400 |
commit | a3bb67a75c0fe5c48def0fd39d2fe9ec043241d4 (patch) | |
tree | 7f13ab4716c8295d3dc1979ccb2896aaed860581 /drivers/video | |
parent | ac01bb7ea06a02c8dc9084b4ed59cb59efeceb39 (diff) |
OMAP2: DSS: Add missing line for update bg color
The driver set the background color canvas but never writes it in
DISPC_DEFAULT_COLOR_m register, which changes the background color
on the LCD or TV.
This patch adds a line to call to dispc_set_default_color() which is
the function in charge to write the DISPC_DEFAULT_COLOR_m register.
Signed-off-by: Carlos Lopez <carlos.cruz@sasken.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/manager.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/manager.c b/drivers/video/omap2/dss/manager.c index 32ec2ff2e9cf..9e1fbe531bf0 100644 --- a/drivers/video/omap2/dss/manager.c +++ b/drivers/video/omap2/dss/manager.c | |||
@@ -843,6 +843,7 @@ static void configure_manager(enum omap_channel channel) | |||
843 | 843 | ||
844 | c = &dss_cache.manager_cache[channel]; | 844 | c = &dss_cache.manager_cache[channel]; |
845 | 845 | ||
846 | dispc_set_default_color(channel, c->default_color); | ||
846 | dispc_set_trans_key(channel, c->trans_key_type, c->trans_key); | 847 | dispc_set_trans_key(channel, c->trans_key_type, c->trans_key); |
847 | dispc_enable_trans_key(channel, c->trans_enabled); | 848 | dispc_enable_trans_key(channel, c->trans_enabled); |
848 | dispc_enable_alpha_blending(channel, c->alpha_enabled); | 849 | dispc_enable_alpha_blending(channel, c->alpha_enabled); |