2005-04-17 00:20:36 +02:00
|
|
|
#
|
2005-07-02 18:15:49 +02:00
|
|
|
# Makefile for miscellaneous I2C chip drivers.
|
2005-04-17 00:20:36 +02:00
|
|
|
#
|
2008-03-12 14:15:00 +01:00
|
|
|
# Think twice before you add a new driver to this directory.
|
|
|
|
# Device drivers are better grouped according to the functionality they
|
|
|
|
# implement rather than to the bus they are connected to. In particular:
|
|
|
|
# * Hardware monitoring chip drivers go to drivers/hwmon
|
|
|
|
# * RTC chip drivers go to drivers/rtc
|
|
|
|
# * I/O expander drivers go to drivers/gpio
|
|
|
|
#
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-07-12 14:12:29 +02:00
|
|
|
obj-$(CONFIG_DS1682) += ds1682.o
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
|
2005-06-03 19:03:27 +02:00
|
|
|
obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
|
2005-06-07 15:55:38 +02:00
|
|
|
obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
|
2008-01-27 18:14:45 +01:00
|
|
|
obj-$(CONFIG_PCF8575) += pcf8575.o
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o
|
|
|
|
obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o
|
2005-05-25 02:34:51 +02:00
|
|
|
obj-$(CONFIG_TPS65010) += tps65010.o
|
2007-07-17 13:06:09 +02:00
|
|
|
obj-$(CONFIG_MENELAUS) += menelaus.o
|
2007-07-12 14:12:30 +02:00
|
|
|
obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
|
|
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
|
|
endif
|
|
|
|
|