Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: ad1816a: 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_ad1816a_get_format() with the proper snd_pcm_format_t
type.

This fixes the sparse warning like:
sound/isa/ad1816a/ad1816a_lib.c:93:14: warning: restricted snd_pcm_format_t degrades to integer

Signed-off-by: Takashi Iwai <tiwai@suse.de>

+2 -1
+2 -1
sound/isa/ad1816a/ad1816a_lib.c
··· 85 85 86 86 87 87 static unsigned char snd_ad1816a_get_format(struct snd_ad1816a *chip, 88 - unsigned int format, int channels) 88 + snd_pcm_format_t format, 89 + int channels) 89 90 { 90 91 unsigned char retval = AD1816A_FMT_LINEAR_8; 91 92