[alsa-devel] [PATCH] ASoC: soc-core: Fix sparse warning in be32_to_cpup() call
Jyri Sarha
jsarha at ti.com
Thu Sep 17 10:02:57 CEST 2015
Signed-off-by: Jyri Sarha <jsarha at ti.com>
---
sound/soc/soc-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 1929f0e..614b831 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3301,7 +3301,7 @@ static int snd_soc_of_get_slot_mask(struct device_node *np,
return 0;
val /= sizeof(u32);
for (i = 0; i < val; i++)
- if (be32_to_cpup(&of_slot_mask[i]))
+ if (be32_to_cpup((__be32 *)&of_slot_mask[i]))
*mask |= (1 << i);
return val;
--
1.9.1
More information about the Alsa-devel
mailing list