diff options
| author | Che-Liang Chiou <[email protected]> | 2011-10-21 17:04:21 +0800 |
|---|---|---|
| committer | Anatolij Gustschin <[email protected]> | 2011-11-15 23:58:26 +0100 |
| commit | d3983ee85325d2be730830ebcf82585ee7cd2ecb (patch) | |
| tree | 0dba0f79d77e06c787e61d7bfb77cc2e3868a78e /arch/powerpc/cpu | |
| parent | c270730f580e85ddab82e981abf8a518f78ae803 (diff) | |
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 <[email protected]>
Acked-by: Mike Frysinger <[email protected]>
Diffstat (limited to 'arch/powerpc/cpu')
| -rw-r--r-- | arch/powerpc/cpu/mpc8xx/video.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/video.c b/arch/powerpc/cpu/mpc8xx/video.c index 7725c67b488..1bbf4ccc655 100644 --- a/arch/powerpc/cpu/mpc8xx/video.c +++ b/arch/powerpc/cpu/mpc8xx/video.c @@ -125,6 +125,7 @@ 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 */ |
