diff options
author | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
commit | 7c0fb2e980af93923f2071e1af087010962e06bd (patch) | |
tree | 622e5a8f57901f9f6dbccec081766c29cffbf08e /drv.c | |
parent | 181cec4348da40331b3e8ab365732c025ec149b2 (diff) | |
download | lcd4linux-7c0fb2e980af93923f2071e1af087010962e06bd.tar.gz |
Import upstream version 0.11.0~svn1158
Diffstat (limited to 'drv.c')
-rw-r--r-- | drv.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: drv.c 1137 2011-01-02 00:39:10Z michael $ +/* $Id: drv.c 1158 2011-07-28 02:09:16Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv.c $ * * new framework for display drivers @@ -72,7 +72,9 @@ extern DRIVER drv_LW_ABP; extern DRIVER drv_M50530; extern DRIVER drv_MatrixOrbital; extern DRIVER drv_MatrixOrbitalGX; +extern DRIVER drv_MDM166A; extern DRIVER drv_MilfordInstruments; +extern DRIVER drv_Newhaven; extern DRIVER drv_Noritake; extern DRIVER drv_NULL; extern DRIVER drv_Pertelian; @@ -179,9 +181,15 @@ DRIVER *Driver[] = { #ifdef WITH_MATRIXORBITALGX &drv_MatrixOrbitalGX, #endif +#ifdef WITH_MDM166A + &drv_MDM166A, +#endif #ifdef WITH_MILINST &drv_MilfordInstruments, #endif +#ifdef WITH_NEWHAVEN + &drv_Newhaven, +#endif #ifdef WITH_NORITAKE &drv_Noritake, #endif |