aboutsummaryrefslogtreecommitdiffstats
path: root/drv.c
diff options
context:
space:
mode:
authorreinelt <>2005-11-04 04:44:52 +0000
committerreinelt <>2005-11-04 04:44:52 +0000
commita7b8a9668d0f570da0d30f2f09a2f620082071c2 (patch)
treea0e2199800aa6b138e7460374a1443e330afb7b3 /drv.c
parent68f725de21b5f053d4d05fda2a0d66ffd9cc830b (diff)
downloadlcd4linux-a7b8a9668d0f570da0d30f2f09a2f620082071c2.tar.gz
[lcd4linux @ 2005-11-04 04:44:52 by reinelt]
LPH7508 driver (not yet finished)
Diffstat (limited to '')
-rw-r--r--drv.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drv.c b/drv.c
index 99430f2..b461f9e 100644
--- a/drv.c
+++ b/drv.c
@@ -1,4 +1,4 @@
-/* $Id: drv.c,v 1.33 2005/08/22 05:44:43 reinelt Exp $
+/* $Id: drv.c,v 1.34 2005/11/04 04:44:52 reinelt Exp $
*
* new framework for display drivers
*
@@ -23,6 +23,9 @@
*
*
* $Log: drv.c,v $
+ * Revision 1.34 2005/11/04 04:44:52 reinelt
+ * LPH7508 driver (not yet finished)
+ *
* Revision 1.33 2005/08/22 05:44:43 reinelt
* new driver 'WincorNixdorf'
* some fixes to the bar code
@@ -210,6 +213,7 @@ extern DRIVER drv_HD44780;
extern DRIVER drv_Image;
extern DRIVER drv_LCDLinux;
extern DRIVER drv_LCDTerm;
+extern DRIVER drv_LPH7508;
extern DRIVER drv_M50530;
extern DRIVER drv_MatrixOrbital;
extern DRIVER drv_MilfordInstruments;
@@ -258,6 +262,9 @@ DRIVER *Driver[] = {
#ifdef WITH_LCDTERM
&drv_LCDTerm,
#endif
+#ifdef WITH_LPH7508
+ &drv_LPH7508,
+#endif
#ifdef WITH_M50530
&drv_M50530,
#endif