diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2015-10-18 22:39:51 +0900 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-10-19 11:57:02 +0200 |
commit | 463543ac2effaeb2b524f0a0a92f2413c23998ca (patch) | |
tree | 87a1975e78a2bfb147e6c233fe6adb21ebb5b297 /sound/firewire/fireworks | |
parent | cbc6f28067aa0aa1193c2bf3546430b2c4dae22c (diff) | |
download | linux-463543ac2effaeb2b524f0a0a92f2413c23998ca.tar.gz linux-463543ac2effaeb2b524f0a0a92f2413c23998ca.tar.bz2 linux-463543ac2effaeb2b524f0a0a92f2413c23998ca.zip |
ALSA: fireworks: use u32 type for be32_to_cpup() macro
In former commit, snd_efw_command_get_phys_meters() was added to handle
metering data. The given buffer is used to save transaction result and to
convert between endianness. But this causes sparse warnings.
fireworks_command.c:269:25: warning: incorrect type in argument 1 (different base types)
fireworks_command.c:269:25: expected unsigned int [usertype] *p
fireworks_command.c:269:25: got restricted __be32 [usertype] *
This commit fixes this bug.
Fixes: bde8a8f23bbe('ALSA: fireworks: Add transaction and some commands')
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/fireworks')
-rw-r--r-- | sound/firewire/fireworks/fireworks_command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/fireworks/fireworks_command.c b/sound/firewire/fireworks/fireworks_command.c index 166f80584c2a..94bab0476a65 100644 --- a/sound/firewire/fireworks/fireworks_command.c +++ b/sound/firewire/fireworks/fireworks_command.c @@ -257,7 +257,7 @@ int snd_efw_command_get_phys_meters(struct snd_efw *efw, struct snd_efw_phys_meters *meters, unsigned int len) { - __be32 *buf = (__be32 *)meters; + u32 *buf = (u32 *)meters; unsigned int i; int err; |