summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2002-12-27 19:11:59 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2002-12-27 19:11:59 -0800
commit7f0eb5bd9884d0120b9c057ea96bcd85fb49849c (patch)
tree9074e39e84cfb522b12d1d024e3e5e946184818e /include
parent3bcf19ecb7d5a598707cde92fadce9f2594fb1bd (diff)
[PATCH] struct font_desc external use
Move the definition of struct font_desc back to <video/font.h>, so it can be used outside of drivers/video/console (needed for Mac/m68k boot progress messages).
Diffstat (limited to 'include')
-rw-r--r--include/video/font.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/video/font.h b/include/video/font.h
new file mode 100644
index 000000000000..fd332b3a7179
--- /dev/null
+++ b/include/video/font.h
@@ -0,0 +1,24 @@
+/*
+ * font.h -- `Soft' font definitions
+ *
+ * Created 1995 by Geert Uytterhoeven
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file COPYING in the main directory of this archive
+ * for more details.
+ */
+
+#ifndef _VIDEO_FONT_H
+#define _VIDEO_FONT_H
+
+#include <linux/types.h>
+
+struct font_desc {
+ int idx;
+ char *name;
+ int width, height;
+ void *data;
+ int pref;
+};
+
+#endif /* _VIDEO_FONT_H */