aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorlfcorreia <>2005-05-31 20:42:55 +0000
committerlfcorreia <>2005-05-31 20:42:55 +0000
commitc51755ccda55a60133cf181d42432d5d8e4ca98f (patch)
treeebf9b589473f4adb3ca9eaeabf6cbc13dcec1229 /drivers.m4
parent020543332870e438bfc36b8e921cda26663fc9f3 (diff)
downloadlcd4linux-c51755ccda55a60133cf181d42432d5d8e4ca98f.tar.gz
[lcd4linux @ 2005-05-31 20:42:54 by lfcorreia]
new file: lcd4linux_i2c.h avoid the problems detecting the proper I2C kernel include files rearrange all the other autoconf stuff to remove I2C detection new method by Paul Kamphuis to write to the I2C device
Diffstat (limited to '')
-rw-r--r--drivers.m49
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers.m4 b/drivers.m4
index ee5da93..0a6100e 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -372,13 +372,8 @@ fi
# generic i2c driver
if test "$I2C" = "yes"; then
- if test "$has_i2c" = true; then
- DRIVERS="$DRIVERS drv_generic_i2c.o"
- AC_DEFINE(WITH_I2C, 1, [I2C bus driver])
- else
- I2C="no"
- AC_MSG_WARN(I2C include files not found: I2C bus driver disabled)
- fi
+ DRIVERS="$DRIVERS drv_generic_i2c.o"
+ AC_DEFINE(WITH_I2C, 1, [I2C bus driver])
fi