diff options
author | Mike Looijmans <mike.looijmans@topic.nl> | 2016-01-15 12:54:59 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2016-03-05 17:25:34 +0300 |
commit | df922703574ebe9035045f7c7242a0ec0e11b980 (patch) | |
tree | 1c9ffb5cdc48f11f61140c7db2555f2dffacb774 /drivers/hwmon/Makefile | |
parent | c32f5eff2db51f0126b0a4e42bdefea2d9d2872e (diff) | |
download | linux-df922703574ebe9035045f7c7242a0ec0e11b980.tar.xz |
hwmon: Add LTC2990 sensor driver
This adds support for the Linear Technology LTC2990 I2C System Monitor.
The LTC2990 supports a combination of voltage, current and temperature
monitoring. This driver currently only supports reading two currents
by measuring two differential voltages across series resistors, in
addition to the Vcc supply voltage and internal temperature.
This is sufficient to support the Topic Miami SOM which uses this chip
to monitor the currents flowing into the FPGA and the CPU parts.
Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/Makefile')
-rw-r--r-- | drivers/hwmon/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/Makefile b/drivers/hwmon/Makefile index cfc09711810c..a7ecaf2f29aa 100644 --- a/drivers/hwmon/Makefile +++ b/drivers/hwmon/Makefile @@ -100,6 +100,7 @@ obj-$(CONFIG_SENSORS_LM95234) += lm95234.o obj-$(CONFIG_SENSORS_LM95241) += lm95241.o obj-$(CONFIG_SENSORS_LM95245) += lm95245.o obj-$(CONFIG_SENSORS_LTC2945) += ltc2945.o +obj-$(CONFIG_SENSORS_LTC2990) += ltc2990.o obj-$(CONFIG_SENSORS_LTC4151) += ltc4151.o obj-$(CONFIG_SENSORS_LTC4215) += ltc4215.o obj-$(CONFIG_SENSORS_LTC4222) += ltc4222.o |