aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/console/font_mini_4x6.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/console/font_mini_4x6.c')
-rw-r--r--drivers/video/console/font_mini_4x6.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/console/font_mini_4x6.c b/drivers/video/console/font_mini_4x6.c
index d818234fdf11..a19a7f33133e 100644
--- a/drivers/video/console/font_mini_4x6.c
+++ b/drivers/video/console/font_mini_4x6.c
@@ -2148,11 +2148,11 @@ static const unsigned char fontdata_mini_4x6[FONTDATAMAX] = {
2148}; 2148};
2149 2149
2150const struct font_desc font_mini_4x6 = { 2150const struct font_desc font_mini_4x6 = {
2151 MINI4x6_IDX, 2151 .idx = MINI4x6_IDX,
2152 "MINI4x6", 2152 .name = "MINI4x6",
2153 4, 2153 .width = 4,
2154 6, 2154 .height = 6,
2155 fontdata_mini_4x6, 2155 .data = fontdata_mini_4x6,
2156 3 2156 .pref = 3,
2157}; 2157};
2158 2158