font_ter16x32.c (93c69b2d17372463ae33b79b3002c22a208945b3) font_ter16x32.c (4ee573086bd88ff3060dda07873bf755d332e9ba)
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/font.h>
3#include <linux/module.h>
4
5#define FONTDATAMAX 16384
6
7static const struct font_data fontdata_ter16x32 = {
8 { 0, 0, FONTDATAMAX, 0 }, {

--- 2048 unchanged lines hidden (view full) ---

2057} };
2058
2059
2060const struct font_desc font_ter_16x32 = {
2061 .idx = TER16x32_IDX,
2062 .name = "TER16x32",
2063 .width = 16,
2064 .height = 32,
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/font.h>
3#include <linux/module.h>
4
5#define FONTDATAMAX 16384
6
7static const struct font_data fontdata_ter16x32 = {
8 { 0, 0, FONTDATAMAX, 0 }, {

--- 2048 unchanged lines hidden (view full) ---

2057} };
2058
2059
2060const struct font_desc font_ter_16x32 = {
2061 .idx = TER16x32_IDX,
2062 .name = "TER16x32",
2063 .width = 16,
2064 .height = 32,
2065 .charcount = 256,
2065 .data = fontdata_ter16x32.data,
2066#ifdef __sparc__
2067 .pref = 5,
2068#else
2069 .pref = -1,
2070#endif
2071};
2066 .data = fontdata_ter16x32.data,
2067#ifdef __sparc__
2068 .pref = 5,
2069#else
2070 .pref = -1,
2071#endif
2072};