2005-04-16 18:20:36 -04:00
|
|
|
#
|
2005-07-02 12:15:49 -04:00
|
|
|
# Makefile for miscellaneous I2C chip drivers.
|
2005-04-16 18:20:36 -04:00
|
|
|
#
|
2008-10-22 14:21:33 -04:00
|
|
|
# Do not add new drivers to this directory! It is DEPRECATED.
|
|
|
|
#
|
2008-03-12 09:15:00 -04:00
|
|
|
# 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-16 18:20:36 -04:00
|
|
|
|
2007-07-12 08:12:29 -04:00
|
|
|
obj-$(CONFIG_DS1682) += ds1682.o
|
2005-06-03 13:03:27 -04:00
|
|
|
obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
|
2005-06-07 09:55:38 -04:00
|
|
|
obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
|
2005-04-16 18:20:36 -04:00
|
|
|
obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
|
2008-01-27 12:14:45 -05:00
|
|
|
obj-$(CONFIG_PCF8575) += pcf8575.o
|
2005-04-16 18:20:36 -04:00
|
|
|
obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o
|
2007-07-12 08:12:30 -04:00
|
|
|
obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
|
|
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
|
|
endif
|
|
|
|
|