aboutsummaryrefslogtreecommitdiffstats
path: root/drv.c
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-08-03 03:10:49 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-08-03 03:10:49 +0000
commit38367abf672c32015cacd8b469c390a048f2c97f (patch)
treefe3f5d55271947f76fc958352d69d3db12b4b9d8 /drv.c
parente91cbd072ab678b68095a5e81fc37df6ae44c975 (diff)
downloadlcd4linux-38367abf672c32015cacd8b469c390a048f2c97f.tar.gz
driver for 4D Systems serial displays by Sven Killig
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@887 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv.c')
-rw-r--r--drv.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drv.c b/drv.c
index 875fe02..52e9c54 100644
--- a/drv.c
+++ b/drv.c
@@ -24,7 +24,7 @@
*
*/
-/*
+/*
* exported functions:
*
* drv_list (void)
@@ -52,6 +52,7 @@ extern DRIVER drv_BWCT;
extern DRIVER drv_Crystalfontz;
extern DRIVER drv_Curses;
extern DRIVER drv_Cwlinux;
+extern DRIVER drv_D4D;
extern DRIVER drv_EA232graphic;
extern DRIVER drv_G15;
extern DRIVER drv_HD44780;
@@ -105,6 +106,9 @@ DRIVER *Driver[] = {
#ifdef WITH_CWLINUX
&drv_Cwlinux,
#endif
+#ifdef WITH_D4D
+ &drv_D4D,
+#endif
#ifdef WITH_EA232graphic
&drv_EA232graphic,
#endif