Message ID | 1652926418-8519-2-git-send-email-u0084500@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 57f68f2168988e574133fb5abcd73949bf1d1df2 |
Headers | show |
Series | ASoC: rt9120: Fix 3byte read logic and optimize 'PWDN' control | expand |
diff --git a/sound/soc/codecs/rt9120.c b/sound/soc/codecs/rt9120.c index cdf8ad2..94d42be 100644 --- a/sound/soc/codecs/rt9120.c +++ b/sound/soc/codecs/rt9120.c @@ -372,7 +372,7 @@ static int rt9120_reg_read(void *context, unsigned int reg, unsigned int *val) *val = be32_to_cpup((__be32 *)raw); break; case 3: - *val = raw[0] << 16 | raw[1] << 8 | raw[0]; + *val = raw[0] << 16 | raw[1] << 8 | raw[2]; break; case 2: *val = be16_to_cpup((__be16 *)raw);