diff options
-rw-r--r-- | sound/soc/soc-cache.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/soc-cache.c b/sound/soc/soc-cache.c index 91db7afb1210..9dfe9a58a314 100644 --- a/sound/soc/soc-cache.c +++ b/sound/soc/soc-cache.c | |||
@@ -159,7 +159,8 @@ static int snd_soc_8_8_write(struct snd_soc_codec *codec, unsigned int reg, | |||
159 | 159 | ||
160 | BUG_ON(codec->volatile_register); | 160 | BUG_ON(codec->volatile_register); |
161 | 161 | ||
162 | data[0] = reg & 0xff; | 162 | reg &= 0xff; |
163 | data[0] = reg; | ||
163 | data[1] = value & 0xff; | 164 | data[1] = value & 0xff; |
164 | 165 | ||
165 | if (reg < codec->reg_cache_size) | 166 | if (reg < codec->reg_cache_size) |
@@ -180,6 +181,7 @@ static unsigned int snd_soc_8_8_read(struct snd_soc_codec *codec, | |||
180 | unsigned int reg) | 181 | unsigned int reg) |
181 | { | 182 | { |
182 | u8 *cache = codec->reg_cache; | 183 | u8 *cache = codec->reg_cache; |
184 | reg &= 0xff; | ||
183 | if (reg >= codec->reg_cache_size) | 185 | if (reg >= codec->reg_cache_size) |
184 | return -1; | 186 | return -1; |
185 | return cache[reg]; | 187 | return cache[reg]; |