mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
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>
14 lines
239 B
C
14 lines
239 B
C
/*
|
|
* (C) Copyright 2000
|
|
* Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _VIDEO_FONT_
|
|
#define _VIDEO_FONT_
|
|
|
|
#include <video_font_data.h>
|
|
|
|
#endif /* _VIDEO_FONT_ */
|