aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-04-29 11:00:28 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-04-29 11:00:28 +0000
commite0bc8f47b964169bcbec3ce14d1aca38bc024cee (patch)
treef8b0a611d773d5bd691d9156392ee3704d79d2fc /display.c
parentc9a403a8364c906a54c24a9465299bb7e45e53f6 (diff)
downloadlcd4linux-e0bc8f47b964169bcbec3ce14d1aca38bc024cee.tar.gz
[lcd4linux @ 2002-04-29 11:00:25 by reinelt]
added Toshiba T6963 driver added ndelay() with nanosecond resolution git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@152 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'display.c')
-rw-r--r--display.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/display.c b/display.c
index a4c283c..46f7480 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.29 2001/09/10 13:55:53 reinelt Exp $
+/* $Id: display.c,v 1.30 2002/04/29 11:00:28 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,11 @@
*
*
* $Log: display.c,v $
+ * Revision 1.30 2002/04/29 11:00:28 reinelt
+ *
+ * added Toshiba T6963 driver
+ * added ndelay() with nanosecond resolution
+ *
* Revision 1.29 2001/09/10 13:55:53 reinelt
* M50530 driver
*
@@ -188,6 +193,7 @@ extern LCD BeckmannEgle[];
extern LCD Crystalfontz[];
extern LCD HD44780[];
extern LCD M50530[];
+extern LCD T6963[];
extern LCD MatrixOrbital[];
extern LCD PalmPilot[];
extern LCD Raster[];
@@ -209,6 +215,9 @@ FAMILY Driver[] = {
#ifdef WITH_M50530
{ "M50530 based", M50530 },
#endif
+#ifdef WITH_T6963
+ { "T6963 based", T6963 },
+#endif
#ifdef WITH_MATRIXORBITAL
{ "Matrix Orbital", MatrixOrbital },
#endif