mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
a8bfeceb0c
For TI power management chip TPS40422, READ_TEMPERATURE_2 command is supported on page 1 of the chip, but the original driver(pmbus.c) only tried to detect this command on page 0, this will lead to a result that the temperature sensor in page 1 couldn't be detected. This change is to isolate the tps40422 driver from pmbus.c into a solo front-end driver. Signed-off-by: Zhu Laiwen <richard.zhu@nsn.com> [Guenter Roeck: Dropped unnecessary license text (fixes checkpatch warning)] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
17 lines
550 B
Makefile
17 lines
550 B
Makefile
#
|
|
# Makefile for PMBus chip drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_PMBUS) += pmbus_core.o
|
|
obj-$(CONFIG_SENSORS_PMBUS) += pmbus.o
|
|
obj-$(CONFIG_SENSORS_ADM1275) += adm1275.o
|
|
obj-$(CONFIG_SENSORS_LM25066) += lm25066.o
|
|
obj-$(CONFIG_SENSORS_LTC2978) += ltc2978.o
|
|
obj-$(CONFIG_SENSORS_MAX16064) += max16064.o
|
|
obj-$(CONFIG_SENSORS_MAX34440) += max34440.o
|
|
obj-$(CONFIG_SENSORS_MAX8688) += max8688.o
|
|
obj-$(CONFIG_SENSORS_TPS40422) += tps40422.o
|
|
obj-$(CONFIG_SENSORS_UCD9000) += ucd9000.o
|
|
obj-$(CONFIG_SENSORS_UCD9200) += ucd9200.o
|
|
obj-$(CONFIG_SENSORS_ZL6100) += zl6100.o
|