summaryrefslogtreecommitdiffstats
path: root/sound/isa
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2018-07-25 23:19:42 +0200
committerTakashi Iwai <tiwai@suse.de>2018-07-27 09:05:31 +0200
commit6be9a60efb401487a4d658ef23d652a9e6860b34 (patch)
treebc4e5bb6e0f394d97feab5d39e6a5ec0d89a4079 /sound/isa
parenta91a0e774984aa57090c39dc3269a812417737ed (diff)
downloadlinux-0-day-6be9a60efb401487a4d658ef23d652a9e6860b34.tar.gz
linux-0-day-6be9a60efb401487a4d658ef23d652a9e6860b34.tar.xz
ALSA: wss: Fix sparse warning wrt PCM format type
The PCM format type is with __bitwise, and it can't be converted from integer implicitly. Instead of an ugly cast, declare the function argument of snd_wss_get_format() with the proper snd_pcm_format_t type. This fixes the sparse warnings like: sound/isa/wss/wss_lib.c:551:14: warning: restricted snd_pcm_format_t degrades to integer Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa')
-rw-r--r--sound/isa/wss/wss_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/wss/wss_lib.c b/sound/isa/wss/wss_lib.c
index 8a852042a066a..d23cc8abe1efe 100644
--- a/sound/isa/wss/wss_lib.c
+++ b/sound/isa/wss/wss_lib.c
@@ -541,7 +541,7 @@ static unsigned char snd_wss_get_rate(unsigned int rate)
}
static unsigned char snd_wss_get_format(struct snd_wss *chip,
- int format,
+ snd_pcm_format_t format,
int channels)
{
unsigned char rformat;