ASoC: Use cpu_to_be16() in 8x16 write
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
This commit is contained in:
parent
f06f136fe0
commit
94228bcf8c
|
@ -192,10 +192,10 @@ static int snd_soc_8_16_write(struct snd_soc_codec *codec, unsigned int reg,
|
||||||
unsigned int value)
|
unsigned int value)
|
||||||
{
|
{
|
||||||
u8 data[3];
|
u8 data[3];
|
||||||
|
u16 val = cpu_to_be16(value);
|
||||||
|
|
||||||
data[0] = reg;
|
data[0] = reg;
|
||||||
data[1] = (value >> 8) & 0xff;
|
memcpy(&data[1], &val, sizeof(val));
|
||||||
data[2] = value & 0xff;
|
|
||||||
|
|
||||||
return do_hw_write(codec, reg, value, data, 3);
|
return do_hw_write(codec, reg, value, data, 3);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue