mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-04 18:27:36 +00:00
drivers/misc/ad525x_dpot: AD5274 fix RDAC read back errors
commitf3df53e4d7upstream. Fix RDAC read back errors caused by a typo. Value must shift by 2. Fixes:a4bd394956("drivers/misc/ad525x_dpot.c: new features") Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f55131145b
commit
ab2c82dcd6
@@ -216,7 +216,7 @@ static s32 dpot_read_i2c(struct dpot_data *dpot, u8 reg)
|
|||||||
*/
|
*/
|
||||||
value = swab16(value);
|
value = swab16(value);
|
||||||
|
|
||||||
if (dpot->uid == DPOT_UID(AD5271_ID))
|
if (dpot->uid == DPOT_UID(AD5274_ID))
|
||||||
value = value >> 2;
|
value = value >> 2;
|
||||||
return value;
|
return value;
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user