aboutsummaryrefslogtreecommitdiffstats
path: root/drv.c
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-07-15 10:22:19 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-07-15 10:22:19 +0000
commitb243fddf0754e8d193febc0598941fd1638ff33b (patch)
treeff80c438b682a1379a494dc710025c5f8eaf7dd7 /drv.c
parent38a69aee81b48e2df7714310c39b5cdf171b9123 (diff)
downloadlcd4linux-b243fddf0754e8d193febc0598941fd1638ff33b.tar.gz
added IRLCD driver by Jean-Philippe Civade
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@884 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv.c')
-rw-r--r--drv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drv.c b/drv.c
index 1d367b6..875fe02 100644
--- a/drv.c
+++ b/drv.c
@@ -56,6 +56,7 @@ extern DRIVER drv_EA232graphic;
extern DRIVER drv_G15;
extern DRIVER drv_HD44780;
extern DRIVER drv_Image;
+extern DRIVER drv_IRLCD;
extern DRIVER drv_LCD2USB;
extern DRIVER drv_LCDLinux;
extern DRIVER drv_LCDTerm;
@@ -116,6 +117,9 @@ DRIVER *Driver[] = {
#if (defined(WITH_PNG) && defined(WITH_GD)) || defined(WITH_PPM)
&drv_Image,
#endif
+#ifdef WITH_IRLCD
+ &drv_IRLCD,
+#endif
#ifdef WITH_LCD2USB
&drv_LCD2USB,
#endif