aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-09-10 13:55:53 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-09-10 13:55:53 +0000
commit625d3ca196c9d1f99be53e8c262ae68f6ec24ca0 (patch)
treecd36ee97db1d992d09285343ef1c2c08417d7b43 /display.c
parent3d6eadbe951a6ceefcc01db86eaa34f4800156dc (diff)
downloadlcd4linux-625d3ca196c9d1f99be53e8c262ae68f6ec24ca0.tar.gz
[lcd4linux @ 2001-09-10 13:55:53 by reinelt]
M50530 driver git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@144 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'display.c')
-rw-r--r--display.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/display.c b/display.c
index 229da60..a4c283c 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.28 2001/03/16 16:40:17 ltoetsch Exp $
+/* $Id: display.c,v 1.29 2001/09/10 13:55:53 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,9 @@
*
*
* $Log: display.c,v $
+ * Revision 1.29 2001/09/10 13:55:53 reinelt
+ * M50530 driver
+ *
* Revision 1.28 2001/03/16 16:40:17 ltoetsch
* implemented time bar
*
@@ -184,6 +187,7 @@
extern LCD BeckmannEgle[];
extern LCD Crystalfontz[];
extern LCD HD44780[];
+extern LCD M50530[];
extern LCD MatrixOrbital[];
extern LCD PalmPilot[];
extern LCD Raster[];
@@ -202,6 +206,9 @@ FAMILY Driver[] = {
#ifdef WITH_HD44780
{ "HD 44780 based", HD44780 },
#endif
+#ifdef WITH_M50530
+ { "M50530 based", M50530 },
+#endif
#ifdef WITH_MATRIXORBITAL
{ "Matrix Orbital", MatrixOrbital },
#endif
@@ -221,7 +228,7 @@ FAMILY Driver[] = {
{ "X Window System", XWindow },
#endif
#ifdef WITH_TEXT
- { "X Ncurses Text", Text },
+ { "ncurses Text", Text },
#endif
{ NULL }
};