diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2016-02-22 10:20:24 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-05-04 14:51:25 -0700 |
commit | f3f0b32c2cd26d9caf0698b39aa57d30f1de7e01 (patch) | |
tree | 1941d2bc567937b0a661e29160ffcd7c69ce6d86 /drivers | |
parent | 6e2e59c3d3df493786fb1f39f7ad93205c9d1385 (diff) | |
download | lwn-f3f0b32c2cd26d9caf0698b39aa57d30f1de7e01.tar.gz lwn-f3f0b32c2cd26d9caf0698b39aa57d30f1de7e01.zip |
drivers/misc/ad525x_dpot: AD5274 fix RDAC read back errors
commit f3df53e4d70b5736368a8fe8aa1bb70c1cb1f577 upstream.
Fix RDAC read back errors caused by a typo. Value must shift by 2.
Fixes: a4bd394956f2 ("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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/misc/ad525x_dpot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ad525x_dpot.c b/drivers/misc/ad525x_dpot.c index d3eee113baeb..daae8e58447d 100644 --- a/drivers/misc/ad525x_dpot.c +++ b/drivers/misc/ad525x_dpot.c @@ -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: |