diff options
author | reinelt <> | 2002-04-29 11:00:28 +0000 |
---|---|---|
committer | reinelt <> | 2002-04-29 11:00:28 +0000 |
commit | b56cb43712ed521aec956ffff5179c15d1a1f0e3 (patch) | |
tree | f8b0a611d773d5bd691d9156392ee3704d79d2fc /display.c | |
parent | 08aa9cb22d81fd0d020544c5f8deadec5970fd21 (diff) | |
download | lcd4linux-b56cb43712ed521aec956ffff5179c15d1a1f0e3.tar.gz |
[lcd4linux @ 2002-04-29 11:00:25 by reinelt]
added Toshiba T6963 driver
added ndelay() with nanosecond resolution
Diffstat (limited to 'display.c')
-rw-r--r-- | display.c | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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 |