diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-05-07 22:34:01 -0700 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2018-05-12 11:02:44 +0100 |
commit | 0cb2aab8f820cfc764d18b9a2ee55f4a6003f782 (patch) | |
tree | 5f68cb3c0492a2bcc04258f8be5fc86c1747a279 /drivers/iio | |
parent | 3345d4702329a4f5760f4c8100da391e07eb878d (diff) | |
download | linux-0cb2aab8f820cfc764d18b9a2ee55f4a6003f782.tar.gz linux-0cb2aab8f820cfc764d18b9a2ee55f4a6003f782.tar.bz2 linux-0cb2aab8f820cfc764d18b9a2ee55f4a6003f782.zip |
iio: potentiostat: lmp91000: add LMP91002 support
LMP91002 is register compatible so add devicetree and i2c client ids
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/potentiostat/lmp91000.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/potentiostat/lmp91000.c b/drivers/iio/potentiostat/lmp91000.c index 85714055cc74..90e895adf997 100644 --- a/drivers/iio/potentiostat/lmp91000.c +++ b/drivers/iio/potentiostat/lmp91000.c @@ -411,12 +411,14 @@ static int lmp91000_remove(struct i2c_client *client) static const struct of_device_id lmp91000_of_match[] = { { .compatible = "ti,lmp91000", }, + { .compatible = "ti,lmp91002", }, { }, }; MODULE_DEVICE_TABLE(of, lmp91000_of_match); static const struct i2c_device_id lmp91000_id[] = { { "lmp91000", 0 }, + { "lmp91002", 0 }, {} }; MODULE_DEVICE_TABLE(i2c, lmp91000_id); |