summaryrefslogtreecommitdiffstats
path: root/board/mcc200
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-10-21 17:04:21 +0800
committerAnatolij Gustschin <agust@denx.de>2011-11-15 23:58:26 +0100
commitd3983ee85325d2be730830ebcf82585ee7cd2ecb (patch)
tree0dba0f79d77e06c787e61d7bfb77cc2e3868a78e /board/mcc200
parentc270730f580e85ddab82e981abf8a518f78ae803 (diff)
downloadblackbird-obmc-uboot-d3983ee85325d2be730830ebcf82585ee7cd2ecb.tar.gz
blackbird-obmc-uboot-d3983ee85325d2be730830ebcf82585ee7cd2ecb.zip
font: split font data from video_font.h
While video_font.h is useful even without referencing the font data, it is not possible to be included multiple times because it defines font data array right in the header. This patch splits the font data array into video_font_data.h and so now video_font.h can be included multiple times. This at least solves the code duplication in board/mcc200/lcd.c. Signed-off-by: Che-Liang Chiou <clchiou@chromium.org> Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/mcc200')
-rw-r--r--board/mcc200/lcd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/mcc200/lcd.c b/board/mcc200/lcd.c
index 726366ddf0..d8f754c4a1 100644
--- a/board/mcc200/lcd.c
+++ b/board/mcc200/lcd.c
@@ -55,6 +55,9 @@
#define PSOC_RETRIES 10 /* each of PSOC_WAIT_TIME */
#define PSOC_WAIT_TIME 10 /* usec */
+#include <video_font.h>
+#define FONT_WIDTH VIDEO_FONT_WIDTH
+
DECLARE_GLOBAL_DATA_PTR;
/*
@@ -185,7 +188,6 @@ void lcd_enable (void)
}
#ifdef CONFIG_PROGRESSBAR
-#define FONT_WIDTH 8 /* the same as VIDEO_FONT_WIDTH in video_font.h */
void show_progress (int size, int tot)
{
int cnt;
OpenPOWER on IntegriCloud