diff options
author | Stefan Eichenberger <eichest@gmail.com> | 2016-03-18 16:51:03 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-03-20 10:31:22 +0000 |
commit | 3fb77e2948ec85bb718418b0a5270ec2e08c2841 (patch) | |
tree | a48d8c229e25970ed9b67ab594d38dcbcebe80eb /drivers/iio | |
parent | fc77dbd34c5c99bce46d40a2491937c3bcbd10af (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>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/adc/max1363.c | 4 |
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 }, {} }; |