| 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 | # | 
| Wolfram Sang | 02cf617 | 2008-10-22 20:21:33 +0200 | [diff] [blame] | 4 | # Do not add new drivers to this directory! It is DEPRECATED. | 
 | 5 | # | 
| Jean Delvare | 3d706d9 | 2008-03-12 14:15:00 +0100 | [diff] [blame] | 6 | # Device drivers are better grouped according to the functionality they | 
 | 7 | # implement rather than to the bus they are connected to. In particular: | 
 | 8 | # * Hardware monitoring chip drivers go to drivers/hwmon | 
 | 9 | # * RTC chip drivers go to drivers/rtc | 
 | 10 | # * I/O expander drivers go to drivers/gpio | 
 | 11 | # | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  | 
| Grant Likely | 5162b75 | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 13 | obj-$(CONFIG_DS1682)		+= ds1682.o | 
| BGardner@Wabtec.com | c3bc4ca | 2005-06-03 13:03:27 -0400 | [diff] [blame] | 14 | obj-$(CONFIG_SENSORS_MAX6875)	+= max6875.o | 
| bgardner@wabtec.com | 69dd204 | 2005-06-07 08:55:38 -0500 | [diff] [blame] | 15 | obj-$(CONFIG_SENSORS_PCA9539)	+= pca9539.o | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | obj-$(CONFIG_SENSORS_PCF8574)	+= pcf8574.o | 
| Bart Van Assche | 5864ae0 | 2008-01-27 18:14:45 +0100 | [diff] [blame] | 17 | obj-$(CONFIG_PCF8575)		+= pcf8575.o | 
| Rodolfo Giometti | a92c344 | 2007-07-12 14:12:30 +0200 | [diff] [blame] | 18 | obj-$(CONFIG_SENSORS_TSL2550)	+= tsl2550.o | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  | 
 | 20 | ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) | 
 | 21 | EXTRA_CFLAGS += -DDEBUG | 
 | 22 | endif | 
 | 23 |  |