hwmon: add support for adt7470
New driver to expose temperature and fan controls attached to Analog Devices ADT7470 hwmon chips. Signed-off-by: Darrick J. Wong <djwong@us.ibm.com> Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
This commit is contained in:
parent
8afb10490b
commit
6f9703d0be
|
@ -133,6 +133,16 @@ config SENSORS_ADM9240
|
||||||
This driver can also be built as a module. If so, the module
|
This driver can also be built as a module. If so, the module
|
||||||
will be called adm9240.
|
will be called adm9240.
|
||||||
|
|
||||||
|
config SENSORS_ADT7470
|
||||||
|
tristate "Analog Devices ADT7470"
|
||||||
|
depends on I2C && EXPERIMENTAL
|
||||||
|
help
|
||||||
|
If you say yes here you get support for the Analog Devices
|
||||||
|
ADT7470 temperature monitoring chips.
|
||||||
|
|
||||||
|
This driver can also be built as a module. If so, the module
|
||||||
|
will be called adt7470.
|
||||||
|
|
||||||
config SENSORS_K8TEMP
|
config SENSORS_K8TEMP
|
||||||
tristate "AMD Athlon64/FX or Opteron temperature sensor"
|
tristate "AMD Athlon64/FX or Opteron temperature sensor"
|
||||||
depends on X86 && PCI && EXPERIMENTAL
|
depends on X86 && PCI && EXPERIMENTAL
|
||||||
|
|
|
@ -22,6 +22,7 @@ obj-$(CONFIG_SENSORS_ADM1026) += adm1026.o
|
||||||
obj-$(CONFIG_SENSORS_ADM1029) += adm1029.o
|
obj-$(CONFIG_SENSORS_ADM1029) += adm1029.o
|
||||||
obj-$(CONFIG_SENSORS_ADM1031) += adm1031.o
|
obj-$(CONFIG_SENSORS_ADM1031) += adm1031.o
|
||||||
obj-$(CONFIG_SENSORS_ADM9240) += adm9240.o
|
obj-$(CONFIG_SENSORS_ADM9240) += adm9240.o
|
||||||
|
obj-$(CONFIG_SENSORS_ADT7470) += adt7470.o
|
||||||
obj-$(CONFIG_SENSORS_APPLESMC) += applesmc.o
|
obj-$(CONFIG_SENSORS_APPLESMC) += applesmc.o
|
||||||
obj-$(CONFIG_SENSORS_AMS) += ams/
|
obj-$(CONFIG_SENSORS_AMS) += ams/
|
||||||
obj-$(CONFIG_SENSORS_ATXP1) += atxp1.o
|
obj-$(CONFIG_SENSORS_ATXP1) += atxp1.o
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue