Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
Jean Delvare | ad2f931 | 2005-07-02 18:15:49 +0200 | [diff] [blame] | 2 | # Makefile for miscellaneous I2C chip drivers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | # |
Jean Delvare | 3d706d9 | 2008-03-12 14:15:00 +0100 | [diff] [blame] | 4 | # 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Grant Likely | 5162b75 | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 12 | obj-$(CONFIG_DS1682) += ds1682.o |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 13 | obj-$(CONFIG_AT24) += at24.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o |
BGardner@Wabtec.com | c3bc4ca | 2005-06-03 13:03:27 -0400 | [diff] [blame] | 15 | obj-$(CONFIG_SENSORS_MAX6875) += max6875.o |
bgardner@wabtec.com | 69dd204 | 2005-06-07 08:55:38 -0500 | [diff] [blame] | 16 | obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o |
Bart Van Assche | 5864ae0 | 2008-01-27 18:14:45 +0100 | [diff] [blame] | 18 | obj-$(CONFIG_PCF8575) += pcf8575.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o |
David Brownell | 72cd799 | 2005-05-24 17:34:51 -0700 | [diff] [blame] | 21 | obj-$(CONFIG_TPS65010) += tps65010.o |
Tony Lindgren | 0c4a59f | 2007-07-17 04:06:09 -0700 | [diff] [blame] | 22 | obj-$(CONFIG_MENELAUS) += menelaus.o |
Rodolfo Giometti | a92c344 | 2007-07-12 14:12:30 +0200 | [diff] [blame] | 23 | obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o |
Anton Vorontsov | d6c3db8 | 2008-09-23 18:13:00 +0400 | [diff] [blame] | 24 | obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) |
| 27 | EXTRA_CFLAGS += -DDEBUG |
| 28 | endif |
| 29 | |