diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-17 20:12:44 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-23 18:33:41 -0400 |
commit | 002f967c5010df69eb9a9a5e21132bb885ca8d02 (patch) | |
tree | 969d721cabad95f896ecd56117c23dbf762aa8bb /drivers/video/ct69000.c | |
parent | cfa307f839f59f27b6fd1e80f3686e53b457f8dc (diff) | |
download | u-boot-002f967c5010df69eb9a9a5e21132bb885ca8d02.tar.gz |
Convert CONFIG_SYS_CONSOLE_BG_COL et al to Kconfig
This converts the following to Kconfig:
CONFIG_SYS_CONSOLE_BG_COL
CONFIG_SYS_CONSOLE_FG_COL
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/video/ct69000.c')
-rw-r--r-- | drivers/video/ct69000.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/ct69000.c b/drivers/video/ct69000.c index 22b34418e5..349da5e9c0 100644 --- a/drivers/video/ct69000.c +++ b/drivers/video/ct69000.c @@ -870,7 +870,8 @@ video_init_hw_cursor (int font_width, int font_height) xr_80 = ctRead_i (CT_XR_O, 0x80); xr_80 |= 0x1; /* alternate palette select */ ctWrite_i (CT_XR_O, 0x80, xr_80); - video_set_lut (4, CONSOLE_FG_COL, CONSOLE_FG_COL, CONSOLE_FG_COL); + video_set_lut(4, CONFIG_SYS_CONSOLE_FG_COL, CONFIG_SYS_CONSOLE_FG_COL, + CONFIG_SYS_CONSOLE_FG_COL); /* position 4 is color 0 cursor 0 */ xr_80 &= 0xfe; /* normal palette select */ ctWrite_i (CT_XR_O, 0x80, xr_80); |