diff options
author | Vadim Pasternak <vadimp@mellanox.com> | 2020-01-13 18:08:38 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2020-01-24 00:15:10 +0300 |
commit | 583dc921275c5a0cc7f657550cbf0caae7bf49c3 (patch) | |
tree | cf333c574faf89486e366870d2089904fdd5d74a /drivers/hwmon/pmbus/tps53679.c | |
parent | 9d72340b6ade9457fc79c7059fcc62e5b888f9a5 (diff) | |
download | linux-583dc921275c5a0cc7f657550cbf0caae7bf49c3.tar.xz |
hwmon: (pmbus/tps53679) Extend device list supported by driver
Extends driver with support of the additional devices:
Texas Instruments Dual channel DCAP+ multiphase controllers: TPS53688.
Extend Kconfig with added device.
Signed-off-by: Vadim Pasternak <vadimp@mellanox.com>
Link: https://lore.kernel.org/r/20200113150841.17670-4-vadimp@mellanox.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/pmbus/tps53679.c')
-rw-r--r-- | drivers/hwmon/pmbus/tps53679.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hwmon/pmbus/tps53679.c b/drivers/hwmon/pmbus/tps53679.c index 163e8c6aaa8e..9c22e9013dd7 100644 --- a/drivers/hwmon/pmbus/tps53679.c +++ b/drivers/hwmon/pmbus/tps53679.c @@ -85,6 +85,7 @@ static int tps53679_probe(struct i2c_client *client, static const struct i2c_device_id tps53679_id[] = { {"tps53679", 0}, + {"tps53688", 0}, {} }; @@ -92,6 +93,7 @@ MODULE_DEVICE_TABLE(i2c, tps53679_id); static const struct of_device_id __maybe_unused tps53679_of_match[] = { {.compatible = "ti,tps53679"}, + {.compatible = "ti,tps53688"}, {} }; MODULE_DEVICE_TABLE(of, tps53679_of_match); |