aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <>2002-08-17 13:10:23 +0000
committerreinelt <>2002-08-17 13:10:23 +0000
commit011dae42e1add1f09fafec9125077afd38a9a837 (patch)
treee5c8057ae5b1ed833c45c35a6638bf17fca9fe0d /display.c
parent99a75431327f5efa7c971c21051f6a2193815210 (diff)
downloadlcd4linux-011dae42e1add1f09fafec9125077afd38a9a837.tar.gz
[lcd4linux @ 2002-08-17 13:10:22 by reinelt]
USBLCD driver added
Diffstat (limited to 'display.c')
-rw-r--r--display.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/display.c b/display.c
index 46f7480..f4a5f9f 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.30 2002/04/29 11:00:28 reinelt Exp $
+/* $Id: display.c,v 1.31 2002/08/17 13:10:23 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,9 @@
*
*
* $Log: display.c,v $
+ * Revision 1.31 2002/08/17 13:10:23 reinelt
+ * USBLCD driver added
+ *
* Revision 1.30 2002/04/29 11:00:28 reinelt
*
* added Toshiba T6963 driver
@@ -194,6 +197,7 @@ extern LCD Crystalfontz[];
extern LCD HD44780[];
extern LCD M50530[];
extern LCD T6963[];
+extern LCD USBLCD[];
extern LCD MatrixOrbital[];
extern LCD PalmPilot[];
extern LCD Raster[];
@@ -218,6 +222,9 @@ FAMILY Driver[] = {
#ifdef WITH_T6963
{ "T6963 based", T6963 },
#endif
+#ifdef WITH_USBLCD
+ { "USBLCD", USBLCD },
+#endif
#ifdef WITH_MATRIXORBITAL
{ "Matrix Orbital", MatrixOrbital },
#endif