aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Meerwald <[email protected]>2014-12-06 05:54:00 +0000
committerJonathan Cameron <[email protected]>2014-07-13 21:56:49 +0100
commitef0bf6f82d4bc2edaa88eaf679b5acc355f27037 (patch)
tree0281a358eaae55dce119f24748ae6d66ea827a1d
parent91556c69394d08ad32525b76436a8deab6155cbd (diff)
iio:adc:ad799x: Make chan_spec const in ad799x_chip_config struct
Signed-off-by: Peter Meerwald <[email protected]> Acked-by: Lars-Peter Clausen <[email protected]> Signed-off-by: Jonathan Cameron <[email protected]>
-rw-r--r--drivers/iio/adc/ad799x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ad799x.c b/drivers/iio/adc/ad799x.c
index b8a811726d2f..92401c958ea2 100644
--- a/drivers/iio/adc/ad799x.c
+++ b/drivers/iio/adc/ad799x.c
@@ -107,7 +107,7 @@ enum {
* @info: pointer to iio_info struct
*/
struct ad799x_chip_config {
- struct iio_chan_spec channel[9];
+ const struct iio_chan_spec channel[9];
u16 default_config;
const struct iio_info *info;
};