]> Git Repo - u-boot.git/blame - include/video_font.h
rockchip: rk3588-edgeble-neu6: Enable FIT checksum validation
[u-boot.git] / include / video_font.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
17d1fd77
WD
2/*
3 * (C) Copyright 2000
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), [email protected]
17d1fd77
WD
5 */
6
7#ifndef _VIDEO_FONT_
8#define _VIDEO_FONT_
9
39c1fa2c
DS
10#include <video_font_data.h>
11
12#if defined(CONFIG_VIDEO_FONT_4X6)
78556631 13#include <video_font_4x6.h>
39c1fa2c
DS
14#endif
15#if defined(CONFIG_VIDEO_FONT_8X16)
0e177d5a 16#include <video_font_8x16.h>
78556631 17#endif
e24db864
DS
18#if defined(CONFIG_VIDEO_FONT_SUN12X22)
19#include <video_font_sun12x22.h>
20#endif
0d6c089f
DS
21#if defined(CONFIG_VIDEO_FONT_16X32)
22#include <video_font_ter16x32.h>
23#endif
17d1fd77 24
39c1fa2c
DS
25static struct video_fontdata __maybe_unused fonts[] = {
26#if defined(CONFIG_VIDEO_FONT_8X16)
27 FONT_ENTRY(8, 16, 8x16),
28#endif
29#if defined(CONFIG_VIDEO_FONT_4X6)
30 FONT_ENTRY(4, 6, 4x6),
e24db864
DS
31#endif
32#if defined(CONFIG_VIDEO_FONT_SUN12X22)
33 FONT_ENTRY(12, 22, 12x22),
0d6c089f
DS
34#endif
35#if defined(CONFIG_VIDEO_FONT_16X32)
36 FONT_ENTRY(16, 32, 16x32),
39c1fa2c
DS
37#endif
38 {/* list terminator */}
39};
40
d3983ee8 41#endif /* _VIDEO_FONT_ */
This page took 0.741924 seconds and 4 git commands to generate.