aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/rl6347a.c
diff options
context:
space:
mode:
authorBard liao <yung-chuan.liao@linux.intel.com>2019-01-04 20:02:49 -0600
committerMark Brown <broonie@kernel.org>2019-01-07 16:54:20 +0000
commitb8e022e83ba99a0deb27e929033008402f863dd7 (patch)
treea6cea4948c6cab5679ff2700991ea0613e2c7187 /sound/soc/codecs/rl6347a.c
parentASoC: rt5645: store eq kcontrol byte in __be (diff)
downloadlinux-dev-b8e022e83ba99a0deb27e929033008402f863dd7.tar.xz
linux-dev-b8e022e83ba99a0deb27e929033008402f863dd7.zip
ASoC: rl6437a: use __be32 for a __be32 buf
The buf in rl6347a_hw_read is __be32. Cc: Oder Chiou <oder_chiou@realtek.com> Signed-off-by: Bard liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rl6347a.c')
-rw-r--r--sound/soc/codecs/rl6347a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/rl6347a.c b/sound/soc/codecs/rl6347a.c
index 8f571cf8edd4..c0d729b45277 100644
--- a/sound/soc/codecs/rl6347a.c
+++ b/sound/soc/codecs/rl6347a.c
@@ -64,8 +64,8 @@ int rl6347a_hw_read(void *context, unsigned int reg, unsigned int *value)
struct i2c_client *client = context;
struct i2c_msg xfer[2];
int ret;
- __be32 be_reg;
- unsigned int index, vid, buf = 0x0;
+ __be32 be_reg, buf = 0x0;
+ unsigned int index, vid;
/* handle index registers */
if (reg <= 0xff) {