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>
This commit is contained in:
Bard liao 2019-01-04 20:02:49 -06:00 committed by Mark Brown
parent 60b52ed627
commit b8e022e83b
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ int rl6347a_hw_read(void *context, unsigned int reg, unsigned int *value)
struct i2c_client *client = context; struct i2c_client *client = context;
struct i2c_msg xfer[2]; struct i2c_msg xfer[2];
int ret; int ret;
__be32 be_reg; __be32 be_reg, buf = 0x0;
unsigned int index, vid, buf = 0x0; unsigned int index, vid;
/* handle index registers */ /* handle index registers */
if (reg <= 0xff) { if (reg <= 0xff) {