[PATCH] i2c driver fixes for 2.6.1
Greg KH
greg at kroah.com
Tue Jan 20 00:59:18 CET 2004
ChangeSet 1.1474.98.4, 2004/01/14 11:11:06-08:00, mhoffman at lightlink.com
[PATCH] I2C: link asb100 in the proper order
* Jean Delvare <khali at linux-fr.org> [2004-01-09 22:58:58 +0100]:
> Shouldn't the asb100 be listed first, the same way the w83781d is, since
> it has subclients? I would even put asb100 before w83781d, since for now
> the w83781d driver will try to handle ASB100 chips too, thus preventing
> the asb100 driver from being used if both drivers are built-in.
You're right, thanks
* * * * *
This patch fixes the link order for asb100 sensors chip driver.
drivers/i2c/chips/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -Nru a/drivers/i2c/chips/Makefile b/drivers/i2c/chips/Makefile
--- a/drivers/i2c/chips/Makefile Mon Jan 19 15:32:50 2004
+++ b/drivers/i2c/chips/Makefile Mon Jan 19 15:32:50 2004
@@ -2,11 +2,11 @@
# Makefile for the kernel hardware sensors chip drivers.
#
-# w83781d goes first, as it can override other driver's addresses.
+# asb100, then w83781d go first, as they can override other drivers' addresses.
+obj-$(CONFIG_SENSORS_ASB100) += asb100.o
obj-$(CONFIG_SENSORS_W83781D) += w83781d.o
obj-$(CONFIG_SENSORS_ADM1021) += adm1021.o
-obj-$(CONFIG_SENSORS_ASB100) += asb100.o
obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
obj-$(CONFIG_SENSORS_IT87) += it87.o
obj-$(CONFIG_SENSORS_LM75) += lm75.o
More information about the lm-sensors
mailing list