diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/i2c/chips/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/i2c/chips/Makefile')
-rw-r--r-- | drivers/i2c/chips/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/drivers/i2c/chips/Makefile b/drivers/i2c/chips/Makefile new file mode 100644 index 000000000000..65599161a172 --- /dev/null +++ b/drivers/i2c/chips/Makefile | |||
@@ -0,0 +1,48 @@ | |||
1 | # | ||
2 | # Makefile for the kernel hardware sensors chip drivers. | ||
3 | # | ||
4 | |||
5 | # asb100, then w83781d go first, as they can override other drivers' addresses. | ||
6 | obj-$(CONFIG_SENSORS_ASB100) += asb100.o | ||
7 | obj-$(CONFIG_SENSORS_W83627HF) += w83627hf.o | ||
8 | obj-$(CONFIG_SENSORS_W83781D) += w83781d.o | ||
9 | |||
10 | obj-$(CONFIG_SENSORS_ADM1021) += adm1021.o | ||
11 | obj-$(CONFIG_SENSORS_ADM1025) += adm1025.o | ||
12 | obj-$(CONFIG_SENSORS_ADM1026) += adm1026.o | ||
13 | obj-$(CONFIG_SENSORS_ADM1031) += adm1031.o | ||
14 | obj-$(CONFIG_SENSORS_DS1337) += ds1337.o | ||
15 | obj-$(CONFIG_SENSORS_DS1621) += ds1621.o | ||
16 | obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o | ||
17 | obj-$(CONFIG_SENSORS_FSCHER) += fscher.o | ||
18 | obj-$(CONFIG_SENSORS_FSCPOS) += fscpos.o | ||
19 | obj-$(CONFIG_SENSORS_GL518SM) += gl518sm.o | ||
20 | obj-$(CONFIG_SENSORS_GL520SM) += gl520sm.o | ||
21 | obj-$(CONFIG_SENSORS_IT87) += it87.o | ||
22 | obj-$(CONFIG_SENSORS_LM63) += lm63.o | ||
23 | obj-$(CONFIG_SENSORS_LM75) += lm75.o | ||
24 | obj-$(CONFIG_SENSORS_LM77) += lm77.o | ||
25 | obj-$(CONFIG_SENSORS_LM78) += lm78.o | ||
26 | obj-$(CONFIG_SENSORS_LM80) += lm80.o | ||
27 | obj-$(CONFIG_SENSORS_LM83) += lm83.o | ||
28 | obj-$(CONFIG_SENSORS_LM85) += lm85.o | ||
29 | obj-$(CONFIG_SENSORS_LM87) += lm87.o | ||
30 | obj-$(CONFIG_SENSORS_LM90) += lm90.o | ||
31 | obj-$(CONFIG_SENSORS_LM92) += lm92.o | ||
32 | obj-$(CONFIG_SENSORS_MAX1619) += max1619.o | ||
33 | obj-$(CONFIG_SENSORS_M41T00) += m41t00.o | ||
34 | obj-$(CONFIG_SENSORS_PC87360) += pc87360.o | ||
35 | obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o | ||
36 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o | ||
37 | obj-$(CONFIG_SENSORS_RTC8564) += rtc8564.o | ||
38 | obj-$(CONFIG_SENSORS_SIS5595) += sis5595.o | ||
39 | obj-$(CONFIG_SENSORS_SMSC47B397)+= smsc47b397.o | ||
40 | obj-$(CONFIG_SENSORS_SMSC47M1) += smsc47m1.o | ||
41 | obj-$(CONFIG_SENSORS_VIA686A) += via686a.o | ||
42 | obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o | ||
43 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o | ||
44 | |||
45 | ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) | ||
46 | EXTRA_CFLAGS += -DDEBUG | ||
47 | endif | ||
48 | |||