diff options
author | Marek Vasut <marex@denx.de> | 2013-07-30 23:37:57 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2013-08-12 22:28:41 +0200 |
commit | ac8ba84c56ebcb61ce17c2a37898b5a432d333f5 (patch) | |
tree | 0b1535911f151d0783f991a234a307df4144486e /drivers | |
parent | 2bc4aa522740a1b72bb814d0ddf1f9be7df82c83 (diff) |
video: Encapsulate font in video_font_data.h
This patch moves all the font configuration values into video_font_data.h
so they are all in the right place with the font. The video_font.h now only
includes video_font_data.h and will allow us to select and include different
font once more fonts are added.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Anatolij Gustschin <agust@denx.de>
[agust: fixed build warning for mcc200]
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/cfb_console.c | 1 | ||||
-rw-r--r-- | drivers/video/sed156x.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 68ba38b6b3d..fd2885573ca 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -197,7 +197,6 @@ #include <linux/types.h> #include <stdio_dev.h> #include <video_font.h> -#include <video_font_data.h> #if defined(CONFIG_CMD_DATE) #include <rtc.h> diff --git a/drivers/video/sed156x.c b/drivers/video/sed156x.c index d8b0d7f5d6f..f324354c39d 100644 --- a/drivers/video/sed156x.c +++ b/drivers/video/sed156x.c @@ -25,7 +25,6 @@ /* include the font data */ #include <video_font.h> -#include <video_font_data.h> #if VIDEO_FONT_WIDTH != 8 || VIDEO_FONT_HEIGHT != 16 #error Expecting VIDEO_FONT_WIDTH == 8 && VIDEO_FONT_HEIGHT == 16 |