summaryrefslogtreecommitdiff
path: root/drivers/iio/adc
diff options
context:
space:
mode:
authorFlorian Vaussard <florian.vaussard@gmail.com>2016-06-21 07:09:27 (GMT)
committerJonathan Cameron <jic23@kernel.org>2016-06-27 19:59:13 (GMT)
commitc48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64 (patch)
tree65eb26b3a97406a27c3bc684e10abfb7404a89fd /drivers/iio/adc
parent4d462b85e727d482e6fa95252b909f3fce6851e0 (diff)
downloadlinux-c48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64.tar.xz
iio: adc: max1363: Fix missing i2c_device_id for MAX1164x parts
The driver supports MAX11644, MAX11645, MAX11646 and MAX11647 parts. But the corresponding i2c_device_id are missing. Add them! Signed-off-by: Florian Vaussard <florian.vaussard@heig-vd.ch> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r--drivers/iio/adc/max1363.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/iio/adc/max1363.c b/drivers/iio/adc/max1363.c
index 929508e..b5d28c0 100644
--- a/drivers/iio/adc/max1363.c
+++ b/drivers/iio/adc/max1363.c
@@ -1680,6 +1680,10 @@ static const struct i2c_device_id max1363_id[] = {
{ "max11615", max11615 },
{ "max11616", max11616 },
{ "max11617", max11617 },
+ { "max11644", max11644 },
+ { "max11645", max11645 },
+ { "max11646", max11646 },
+ { "max11647", max11647 },
{}
};