From: Mark Brown Date: Tue, 10 May 2011 23:02:35 +0000 (+0200) Subject: ASoC: Convert 16x16 write to use cpu_to_be16() X-Git-Tag: v3.3-rc1~14^2~1031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60c655e62f1ee85b9144fa259b3d1064ddbbe847;p=platform%2Fkernel%2Flinux-stable.git ASoC: Convert 16x16 write to use cpu_to_be16() Make it clear what we're doing. Signed-off-by: Mark Brown Acked-by: Liam Girdwood --- diff --git a/sound/soc/soc-cache.c b/sound/soc/soc-cache.c index 5cd23da..6d6395f 100644 --- a/sound/soc/soc-cache.c +++ b/sound/soc/soc-cache.c @@ -366,14 +366,12 @@ static unsigned int snd_soc_16_16_read(struct snd_soc_codec *codec, static int snd_soc_16_16_write(struct snd_soc_codec *codec, unsigned int reg, unsigned int value) { - u8 data[4]; + u16 data[2]; - data[0] = (reg >> 8) & 0xff; - data[1] = reg & 0xff; - data[2] = (value >> 8) & 0xff; - data[3] = value & 0xff; + data[0] = cpu_to_be16(reg); + data[1] = cpu_to_be16(value); - return do_hw_write(codec, reg, value, data, 4); + return do_hw_write(codec, reg, value, data, sizeof(data)); } #if defined(CONFIG_SPI_MASTER)