diff options
-rw-r--r-- | sound/soc/soc-cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-cache.c b/sound/soc/soc-cache.c index 9c688b8a1f91..d1d4059be04e 100644 --- a/sound/soc/soc-cache.c +++ b/sound/soc/soc-cache.c | |||
@@ -314,9 +314,9 @@ static int snd_soc_16_8_write(struct snd_soc_codec *codec, unsigned int reg, | |||
314 | unsigned int value) | 314 | unsigned int value) |
315 | { | 315 | { |
316 | u8 data[3]; | 316 | u8 data[3]; |
317 | u16 rval = cpu_to_be16(reg); | ||
317 | 318 | ||
318 | data[0] = (reg >> 8) & 0xff; | 319 | memcpy(data, &rval, sizeof(rval)); |
319 | data[1] = reg & 0xff; | ||
320 | data[2] = value; | 320 | data[2] = value; |
321 | reg &= 0xff; | 321 | reg &= 0xff; |
322 | 322 | ||