Commit 465d7fcc authored by Dimitris Papastamos's avatar Dimitris Papastamos Committed by Mark Brown

ASoC: soc-cache: A few minor stylistic changes

Remove redundant parentheses/spaces in the use of the sizeof
operator.
Signed-off-by: default avatarDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 83b65425
...@@ -85,7 +85,7 @@ static int snd_soc_4_12_spi_write(void *control_data, const char *data, ...@@ -85,7 +85,7 @@ static int snd_soc_4_12_spi_write(void *control_data, const char *data,
msg[1] = data[0]; msg[1] = data[0];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -166,7 +166,7 @@ static int snd_soc_7_9_spi_write(void *control_data, const char *data, ...@@ -166,7 +166,7 @@ static int snd_soc_7_9_spi_write(void *control_data, const char *data,
msg[1] = data[1]; msg[1] = data[1];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -246,7 +246,7 @@ static int snd_soc_8_8_spi_write(void *control_data, const char *data, ...@@ -246,7 +246,7 @@ static int snd_soc_8_8_spi_write(void *control_data, const char *data,
msg[1] = data[1]; msg[1] = data[1];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -326,7 +326,7 @@ static int snd_soc_8_16_spi_write(void *control_data, const char *data, ...@@ -326,7 +326,7 @@ static int snd_soc_8_16_spi_write(void *control_data, const char *data,
msg[2] = data[2]; msg[2] = data[2];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -513,7 +513,7 @@ static int snd_soc_16_8_spi_write(void *control_data, const char *data, ...@@ -513,7 +513,7 @@ static int snd_soc_16_8_spi_write(void *control_data, const char *data,
msg[2] = data[2]; msg[2] = data[2];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -633,7 +633,7 @@ static int snd_soc_16_16_spi_write(void *control_data, const char *data, ...@@ -633,7 +633,7 @@ static int snd_soc_16_16_spi_write(void *control_data, const char *data,
msg[3] = data[3]; msg[3] = data[3];
spi_message_init(&m); spi_message_init(&m);
memset(&t, 0, (sizeof t)); memset(&t, 0, sizeof t);
t.tx_buf = &msg[0]; t.tx_buf = &msg[0];
t.len = len; t.len = len;
...@@ -1342,7 +1342,7 @@ static int snd_soc_lzo_cache_init(struct snd_soc_codec *codec) ...@@ -1342,7 +1342,7 @@ static int snd_soc_lzo_cache_init(struct snd_soc_codec *codec)
* that register. * that register.
*/ */
bmp_size = codec_drv->reg_cache_size; bmp_size = codec_drv->reg_cache_size;
sync_bmp = kmalloc(BITS_TO_LONGS(bmp_size) * sizeof (long), sync_bmp = kmalloc(BITS_TO_LONGS(bmp_size) * sizeof(long),
GFP_KERNEL); GFP_KERNEL);
if (!sync_bmp) { if (!sync_bmp) {
ret = -ENOMEM; ret = -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment