blob: ca520fa143d696dd849e80792213ce796e0266a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Jean Delvaread2f9312005-07-02 18:15:49 +02002# Makefile for miscellaneous I2C chip drivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
Jean Delvare3d706d92008-03-12 14:15:00 +01004# Think twice before you add a new driver to this directory.
5# Device drivers are better grouped according to the functionality they
6# implement rather than to the bus they are connected to. In particular:
7# * Hardware monitoring chip drivers go to drivers/hwmon
8# * RTC chip drivers go to drivers/rtc
9# * I/O expander drivers go to drivers/gpio
10#
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Grant Likely5162b752007-07-12 14:12:29 +020012obj-$(CONFIG_DS1682) += ds1682.o
Wolfram Sang2b7a5052008-07-14 22:38:35 +020013obj-$(CONFIG_AT24) += at24.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070014obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
BGardner@Wabtec.comc3bc4ca2005-06-03 13:03:27 -040015obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
bgardner@wabtec.com69dd2042005-06-07 08:55:38 -050016obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070017obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
Bart Van Assche5864ae02008-01-27 18:14:45 +010018obj-$(CONFIG_PCF8575) += pcf8575.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070019obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070020obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o
David Brownell72cd7992005-05-24 17:34:51 -070021obj-$(CONFIG_TPS65010) += tps65010.o
Tony Lindgren0c4a59f2007-07-17 04:06:09 -070022obj-$(CONFIG_MENELAUS) += menelaus.o
Rodolfo Giomettia92c3442007-07-12 14:12:30 +020023obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o
Anton Vorontsovd6c3db82008-09-23 18:13:00 +040024obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
27EXTRA_CFLAGS += -DDEBUG
28endif
29