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 /arch | |
parent | 2bc4aa522740a1b72bb814d0ddf1f9be7df82c83 (diff) | |
download | u-boot-imx-ac8ba84c56ebcb61ce17c2a37898b5a432d333f5.zip u-boot-imx-ac8ba84c56ebcb61ce17c2a37898b5a432d333f5.tar.gz u-boot-imx-ac8ba84c56ebcb61ce17c2a37898b5a432d333f5.tar.bz2 |
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 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/video.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/video.c b/arch/powerpc/cpu/mpc8xx/video.c index 02cd0de..02a0467 100644 --- a/arch/powerpc/cpu/mpc8xx/video.c +++ b/arch/powerpc/cpu/mpc8xx/video.c @@ -109,7 +109,6 @@ DECLARE_GLOBAL_DATA_PTR; /************************************************************************/ #include <video_font.h> /* Get font data, width and height */ -#include <video_font_data.h> #ifdef CONFIG_VIDEO_LOGO #include <video_logo.h> /* Get logo data, width and height */ |