summaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorFlorian Vaussard <florian.vaussard@gmail.com>2016-06-21 09:09:27 +0200
committerJonathan Cameron <jic23@kernel.org>2016-06-27 20:59:13 +0100
commitc48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64 (patch)
tree65eb26b3a97406a27c3bc684e10abfb7404a89fd /drivers/iio
parent4d462b85e727d482e6fa95252b909f3fce6851e0 (diff)
downloadlinux-stable-c48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64.tar.gz
linux-stable-c48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64.tar.bz2
linux-stable-c48c7b2e470ede9bfae2bff3ab8ba1fe5e832f64.zip
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')
-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 929508e5266c..b5d28c025136 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 },
{}
};