aboutsummaryrefslogtreecommitdiffstats
path: root/drv.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-09-24 21:41:00 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-09-24 21:41:00 +0000
commit3588180b37d5a1c1c5e5fdefe93162bd76d5a20d (patch)
treeaf51ab5de2bcb32c3b1c9a4418357c4257e8adb4 /drv.c
parent35e7434afbf825b540210ae1c72c49a18baecc5a (diff)
downloadlcd4linux-3588180b37d5a1c1c5e5fdefe93162bd76d5a20d.tar.gz
[lcd4linux @ 2004-09-24 21:40:52 by reinelt]
new driver for the BWCT USB LCD interface board. git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@492 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv.c')
-rw-r--r--drv.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drv.c b/drv.c
index 1bd4bac..c843e51 100644
--- a/drv.c
+++ b/drv.c
@@ -1,4 +1,4 @@
-/* $Id: drv.c,v 1.22 2004/08/29 13:03:41 reinelt Exp $
+/* $Id: drv.c,v 1.23 2004/09/24 21:41:00 reinelt Exp $
*
* new framework for display drivers
*
@@ -23,6 +23,9 @@
*
*
* $Log: drv.c,v $
+ * Revision 1.23 2004/09/24 21:41:00 reinelt
+ * new driver for the BWCT USB LCD interface board.
+ *
* Revision 1.22 2004/08/29 13:03:41 reinelt
*
* added RouterBoard driver
@@ -168,6 +171,7 @@
#include "drv.h"
extern DRIVER drv_BeckmannEgle;
+extern DRIVER drv_BWCT;
extern DRIVER drv_Crystalfontz;
extern DRIVER drv_Curses;
extern DRIVER drv_Cwlinux;
@@ -192,6 +196,9 @@ DRIVER *Driver[] = {
#ifdef WITH_BECKMANNEGLE
&drv_BeckmannEgle,
#endif
+#ifdef WITH_BWCT
+ &drv_BWCT,
+#endif
#ifdef WITH_CRYSTALFONTZ
&drv_Crystalfontz,
#endif