aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-08-17 13:10:23 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-08-17 13:10:23 +0000
commit38316eabe17ef143a2951b72c7cdd318b99a6c71 (patch)
treee5c8057ae5b1ed833c45c35a6638bf17fca9fe0d /display.c
parentbbdb125fd6cdaf4acae3459b1b0e42e66bb9e96f (diff)
downloadlcd4linux-38316eabe17ef143a2951b72c7cdd318b99a6c71.tar.gz
[lcd4linux @ 2002-08-17 13:10:22 by reinelt]
USBLCD driver added git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@155 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-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