Skip to content

Commit

Permalink
drivers/misc/ad525x_dpot: AD5274 fix RDAC read back errors
Browse files Browse the repository at this point in the history
Fix RDAC read back errors caused by a typo. Value must shift by 2.

Fixes: a4bd394 ("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>
  • Loading branch information
Michael Hennerich authored and Greg Kroah-Hartman committed Mar 2, 2016
1 parent dd16f6c commit f3df53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/ad525x_dpot.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ static s32 dpot_read_i2c(struct dpot_data *dpot, u8 reg)
*/
value = swab16(value);

if (dpot->uid == DPOT_UID(AD5271_ID))
if (dpot->uid == DPOT_UID(AD5274_ID))
value = value >> 2;
return value;
default:
Expand Down

0 comments on commit f3df53e

Please sign in to comment.