aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Eichenberger <eichest@gmail.com>2016-03-18 11:51:03 -0400
committerJonathan Cameron <jic23@kernel.org>2016-03-20 06:31:22 -0400
commit3fb77e2948ec85bb718418b0a5270ec2e08c2841 (patch)
treea48d8c229e25970ed9b67ab594d38dcbcebe80eb
parentfc77dbd34c5c99bce46d40a2491937c3bcbd10af (diff)
iio: adc: max1363: add missing adc to max1363_id
max11644-max11647 had an enum value but were not added to the max1363_id, so they where not selectable in the devictree. Signed-off-by: Stefan Eichenberger <stefan.eichenberger@netmodule.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-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[] = {
1680 { "max11615", max11615 }, 1680 { "max11615", max11615 },
1681 { "max11616", max11616 }, 1681 { "max11616", max11616 },
1682 { "max11617", max11617 }, 1682 { "max11617", max11617 },
1683 { "max11644", max11644 },
1684 { "max11645", max11645 },
1685 { "max11646", max11646 },
1686 { "max11647", max11647 },
1683 {} 1687 {}
1684}; 1688};
1685 1689