From: Pavel Roskin Date: Thu, 13 Apr 2017 21:54:23 +0000 (-0700) Subject: iio: dac: ad7303: fix channel description X-Git-Tag: v4.12-rc1~84^2~114^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ce420fd4251809b4c3119b3b20c8b13bd8eba150;p=karo-tx-linux.git iio: dac: ad7303: fix channel description realbits, storagebits and shift should be numbers, not ASCII characters. Signed-off-by: Pavel Roskin Reviewed-by: Lars-Peter Clausen Cc: Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/dac/ad7303.c b/drivers/iio/dac/ad7303.c index e690dd11e99f..4b0f942b8914 100644 --- a/drivers/iio/dac/ad7303.c +++ b/drivers/iio/dac/ad7303.c @@ -184,9 +184,9 @@ static const struct iio_chan_spec_ext_info ad7303_ext_info[] = { .address = (chan), \ .scan_type = { \ .sign = 'u', \ - .realbits = '8', \ - .storagebits = '8', \ - .shift = '0', \ + .realbits = 8, \ + .storagebits = 8, \ + .shift = 0, \ }, \ .ext_info = ad7303_ext_info, \ }