mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6fc7f10cee
This patch, completely optional, removes from drivers/i2c/chips all the drivers that are implemented in the new RTC subsystem. It should be noted that none of the current driver is actually integrated, i.e. usable without further patches. Signed-off-by: Alessandro Zummo <a.zummo@towertech.it> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 lines
537 B
Makefile
19 lines
537 B
Makefile
#
|
|
# Makefile for miscellaneous I2C chip drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_SENSORS_DS1337) += ds1337.o
|
|
obj-$(CONFIG_SENSORS_DS1374) += ds1374.o
|
|
obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
|
|
obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
|
|
obj-$(CONFIG_SENSORS_M41T00) += m41t00.o
|
|
obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
|
|
obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
|
|
obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o
|
|
obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o
|
|
obj-$(CONFIG_TPS65010) += tps65010.o
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|