diff options
author | Peilin Ye <yepeilin.cs@gmail.com> | 2020-11-12 07:13:34 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2020-11-16 16:31:41 +0100 |
commit | 4ee573086bd88ff3060dda07873bf755d332e9ba (patch) | |
tree | 17d367fcb6c7691b853e29405b87e5eb71ceaf63 /lib/fonts/font_6x11.c | |
parent | 259a252c1f4e19045b06660f81014fb51e17f3f6 (diff) | |
download | linux-4ee573086bd88ff3060dda07873bf755d332e9ba.tar.bz2 |
Fonts: Add charcount field to font_desc
Subsystems are hard-coding the number of characters of our built-in fonts
as 256. Include that information in our kernel font descriptor, `struct
font_desc`.
Signed-off-by: Peilin Ye <yepeilin.cs@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/65952296d1d9486093bd955d1536f7dcd11112c6.1605169912.git.yepeilin.cs@gmail.com
Diffstat (limited to 'lib/fonts/font_6x11.c')
-rw-r--r-- | lib/fonts/font_6x11.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fonts/font_6x11.c b/lib/fonts/font_6x11.c index 2d22a24e816f..bd76b3f6b635 100644 --- a/lib/fonts/font_6x11.c +++ b/lib/fonts/font_6x11.c @@ -3346,6 +3346,7 @@ const struct font_desc font_vga_6x11 = { .name = "ProFont6x11", .width = 6, .height = 11, + .charcount = 256, .data = fontdata_6x11.data, /* Try avoiding this font if possible unless on MAC */ .pref = -2000, |