From: Takashi Iwai Date: Wed, 25 Jul 2018 21:19:42 +0000 (+0200) Subject: ALSA: wss: Fix sparse warning wrt PCM format type X-Git-Tag: v4.19~308^2~6^2~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6be9a60efb401487a4d658ef23d652a9e6860b34;p=platform%2Fkernel%2Flinux-rpi.git 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 --- diff --git a/sound/isa/wss/wss_lib.c b/sound/isa/wss/wss_lib.c index 8a85204..d23cc8a 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;