aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/console/font_10x18.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-10-16 04:29:03 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 12:43:17 -0400
commit908633f3ec8b3e10ef23de28ae6a5b1770118cfd (patch)
tree14acb7b617a4d3bafd71401a5a5cfac16dfa1109 /drivers/video/console/font_10x18.c
parentad41b439cc0650952d14f4083af36cc4b3321a77 (diff)
fbcon: Convert struct font_desc to use ISO C initializers
Akpm's patch "newport_con warning fix" got me to look at the console drivers again and one thing that I noticed was that none of the fonts was using ISO initializers for it's fonts. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/console/font_10x18.c')
-rw-r--r--drivers/video/console/font_10x18.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/video/console/font_10x18.c b/drivers/video/console/font_10x18.c
index e6aa0eab5bb6..6be72bb218ee 100644
--- a/drivers/video/console/font_10x18.c
+++ b/drivers/video/console/font_10x18.c
@@ -5133,14 +5133,14 @@ static const unsigned char fontdata_10x18[FONTDATAMAX] = {
5133 5133
5134 5134
5135const struct font_desc font_10x18 = { 5135const struct font_desc font_10x18 = {
5136 FONT10x18_IDX, 5136 .idx = FONT10x18_IDX,
5137 "10x18", 5137 .name = "10x18",
5138 10, 5138 .width = 10,
5139 18, 5139 .height = 18,
5140 fontdata_10x18, 5140 .data = fontdata_10x18,
5141#ifdef __sparc__ 5141#ifdef __sparc__
5142 5 5142 .pref = 5,
5143#else 5143#else
5144 -1 5144 .pref = -1,
5145#endif 5145#endif
5146}; 5146};