staging:iio:adc:max1363 correctly set channels as big endian.
Also, the differential channels should always have been signed. Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
c52cfb638d
commit
18cffbedc2
|
@ -298,7 +298,12 @@ static const enum max1363_modes max1363_mode_list[] = {
|
|||
.channel = num, \
|
||||
.address = addr, \
|
||||
.info_mask = MAX1363_INFO_MASK, \
|
||||
.scan_type = IIO_ST('u', bits, (bits > 8) ? 16 : 8, 0), \
|
||||
.scan_type = { \
|
||||
.sign = 'u', \
|
||||
.realbits = bits, \
|
||||
.storagebits = (bits > 8) ? 16 : 8, \
|
||||
.endianness = IIO_BE, \
|
||||
}, \
|
||||
.scan_index = si, \
|
||||
.event_mask = evmask, \
|
||||
}
|
||||
|
@ -313,7 +318,12 @@ static const enum max1363_modes max1363_mode_list[] = {
|
|||
.channel2 = num2, \
|
||||
.address = addr, \
|
||||
.info_mask = MAX1363_INFO_MASK, \
|
||||
.scan_type = IIO_ST('u', bits, (bits > 8) ? 16 : 8, 0), \
|
||||
.scan_type = { \
|
||||
.sign = 's', \
|
||||
.realbits = bits, \
|
||||
.storagebits = (bits > 8) ? 16 : 8, \
|
||||
.endianness = IIO_BE, \
|
||||
}, \
|
||||
.scan_index = si, \
|
||||
.event_mask = evmask, \
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue