diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-30 14:57:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-30 14:57:57 -0400 |
commit | 464c9098bbc17b4596aa12191a7e646a28e7587a (patch) | |
tree | 1d97f02c1f071f358f0d0b5fd8e04db3b9a7a9af /drivers/hwmon/Makefile | |
parent | 4c677e2eefdba9c5bfc4474e2e91b26ae8458a1d (diff) | |
parent | f90be42fb383f39aa814b8e14de138da8973e5c1 (diff) |
Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging
* 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging: (24 commits)
hwmon: (lm90) Refactor reading of config2 register
hwmon: (lm90) Make SA56004 detection more robust
hwmon: (lm90) Simplify handling of extended local temp register
hwmon: (pmbus) Add client driver for LM25066, LM5064, and LM5066
hwmon: (max34440) Add support for peak attributes
hwmon: (max8688) Add support for peak attributes
hwmon: (max16064) Add support for peak attributes
hwmon: (adm1275) Add support for peak attributes
hwmon: (pmbus) Add support for peak attributes
hwmon: Add new attributes to sysfs ABI
hwmon: (pmbus) Strengthen check for status register existence
hwmon: (pmbus) Add support for virtual pages
hwmon: (pmbus) Support reading and writing of word registers in device specific code
hwmon: (pmbus) Increase attribute name size
hwmon: (pmbus) Add ADP4000, NCP4200 and NCP4208 to list of supported devices
hwmon: (pmbus) Add support for VID output voltage mode
hwmon: (pmbus) Move PMBus drivers to drivers/hwmon/pmbus
hwmon: (coretemp) Add core/pkg threshold support to Coretemp
hwmon: (lm95241) Add support for LM95231
hwmon: LM95245 driver
...
Diffstat (limited to 'drivers/hwmon/Makefile')
-rw-r--r-- | drivers/hwmon/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/hwmon/Makefile b/drivers/hwmon/Makefile index d7995a1d0784..3c9ccefea791 100644 --- a/drivers/hwmon/Makefile +++ b/drivers/hwmon/Makefile | |||
@@ -80,6 +80,7 @@ obj-$(CONFIG_SENSORS_LM90) += lm90.o | |||
80 | obj-$(CONFIG_SENSORS_LM92) += lm92.o | 80 | obj-$(CONFIG_SENSORS_LM92) += lm92.o |
81 | obj-$(CONFIG_SENSORS_LM93) += lm93.o | 81 | obj-$(CONFIG_SENSORS_LM93) += lm93.o |
82 | obj-$(CONFIG_SENSORS_LM95241) += lm95241.o | 82 | obj-$(CONFIG_SENSORS_LM95241) += lm95241.o |
83 | obj-$(CONFIG_SENSORS_LM95245) += lm95245.o | ||
83 | obj-$(CONFIG_SENSORS_LTC4151) += ltc4151.o | 84 | obj-$(CONFIG_SENSORS_LTC4151) += ltc4151.o |
84 | obj-$(CONFIG_SENSORS_LTC4215) += ltc4215.o | 85 | obj-$(CONFIG_SENSORS_LTC4215) += ltc4215.o |
85 | obj-$(CONFIG_SENSORS_LTC4245) += ltc4245.o | 86 | obj-$(CONFIG_SENSORS_LTC4245) += ltc4245.o |
@@ -87,10 +88,12 @@ obj-$(CONFIG_SENSORS_LTC4261) += ltc4261.o | |||
87 | obj-$(CONFIG_SENSORS_MAX1111) += max1111.o | 88 | obj-$(CONFIG_SENSORS_MAX1111) += max1111.o |
88 | obj-$(CONFIG_SENSORS_MAX16065) += max16065.o | 89 | obj-$(CONFIG_SENSORS_MAX16065) += max16065.o |
89 | obj-$(CONFIG_SENSORS_MAX1619) += max1619.o | 90 | obj-$(CONFIG_SENSORS_MAX1619) += max1619.o |
91 | obj-$(CONFIG_SENSORS_MAX1668) += max1668.o | ||
90 | obj-$(CONFIG_SENSORS_MAX6639) += max6639.o | 92 | obj-$(CONFIG_SENSORS_MAX6639) += max6639.o |
91 | obj-$(CONFIG_SENSORS_MAX6642) += max6642.o | 93 | obj-$(CONFIG_SENSORS_MAX6642) += max6642.o |
92 | obj-$(CONFIG_SENSORS_MAX6650) += max6650.o | 94 | obj-$(CONFIG_SENSORS_MAX6650) += max6650.o |
93 | obj-$(CONFIG_SENSORS_MC13783_ADC)+= mc13783-adc.o | 95 | obj-$(CONFIG_SENSORS_MC13783_ADC)+= mc13783-adc.o |
96 | obj-$(CONFIG_SENSORS_NTC_THERMISTOR) += ntc_thermistor.o | ||
94 | obj-$(CONFIG_SENSORS_PC87360) += pc87360.o | 97 | obj-$(CONFIG_SENSORS_PC87360) += pc87360.o |
95 | obj-$(CONFIG_SENSORS_PC87427) += pc87427.o | 98 | obj-$(CONFIG_SENSORS_PC87427) += pc87427.o |
96 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o | 99 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o |
@@ -121,15 +124,7 @@ obj-$(CONFIG_SENSORS_W83L786NG) += w83l786ng.o | |||
121 | obj-$(CONFIG_SENSORS_WM831X) += wm831x-hwmon.o | 124 | obj-$(CONFIG_SENSORS_WM831X) += wm831x-hwmon.o |
122 | obj-$(CONFIG_SENSORS_WM8350) += wm8350-hwmon.o | 125 | obj-$(CONFIG_SENSORS_WM8350) += wm8350-hwmon.o |
123 | 126 | ||
124 | # PMBus drivers | 127 | obj-$(CONFIG_PMBUS) += pmbus/ |
125 | obj-$(CONFIG_PMBUS) += pmbus_core.o | ||
126 | obj-$(CONFIG_SENSORS_PMBUS) += pmbus.o | ||
127 | obj-$(CONFIG_SENSORS_ADM1275) += adm1275.o | ||
128 | obj-$(CONFIG_SENSORS_MAX16064) += max16064.o | ||
129 | obj-$(CONFIG_SENSORS_MAX34440) += max34440.o | ||
130 | obj-$(CONFIG_SENSORS_MAX8688) += max8688.o | ||
131 | obj-$(CONFIG_SENSORS_UCD9000) += ucd9000.o | ||
132 | obj-$(CONFIG_SENSORS_UCD9200) += ucd9200.o | ||
133 | 128 | ||
134 | ccflags-$(CONFIG_HWMON_DEBUG_CHIP) := -DDEBUG | 129 | ccflags-$(CONFIG_HWMON_DEBUG_CHIP) := -DDEBUG |
135 | 130 | ||