Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751500AbbEZFaW (ORCPT ); Tue, 26 May 2015 01:30:22 -0400 Received: from cantor2.suse.de ([195.135.220.15]:36145 "EHLO mx2.suse.de" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751143AbbEZFaV (ORCPT ); Tue, 26 May 2015 01:30:21 -0400 Date: Tue, 26 May 2015 07:29:57 +0200 Message-ID: From: Takashi Iwai To: "Maciej S. Szmigiero" Cc: "alsa-devel@alsa-project.org" , linux-kernel , patches@opensource.wolfsonmicro.com, Liam Girdwood , Mark Brown , Jaroslav Kysela , Lars-Peter Clausen , Daniel Mack , Wolfram Sang , Charles Keepax , Matt Reimer Subject: Re: [PATCH] ASoC: codecs: use SNDRV_PCM_FMTBIT_* for format bitmask In-Reply-To: <5560AB9D.1010807@maciej.szmigiero.name> References: <5560AB9D.1010807@maciej.szmigiero.name> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/24.5 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4179 Lines: 117 At Sat, 23 May 2015 18:32:29 +0200, Maciej S. Szmigiero wrote: > > snd_soc_pcm_stream.formats is a bitmask of SNDRV_PCM_FMTBIT_*, > not of SNDRV_PCM_FORMAT_* (which are sequential integers), > however some of ASoC CODEC drivers use these values instead. > > Found out by sparse on 0-day kernel tester. > > Signed-off-by: Maciej Szmigiero Wow, that made me wonder how these drivers could actually work. BTW, how did you detect it? Any static analyzer like sparse or smatch? sparse didn't detect it at the last time I tried, IIRC... thanks, Takashi > > diff --git a/sound/soc/codecs/88pm860x-codec.c b/sound/soc/codecs/88pm860x-codec.c > index ee31fa7..38b3dad 100644 > --- a/sound/soc/codecs/88pm860x-codec.c > +++ b/sound/soc/codecs/88pm860x-codec.c > @@ -1186,16 +1186,16 @@ static struct snd_soc_dai_driver pm860x_dai[] = { > .channels_min = 2, > .channels_max = 2, > .rates = PM860X_RATES, > - .formats = SNDRV_PCM_FORMAT_S16_LE | \ > - SNDRV_PCM_FORMAT_S18_3LE, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | \ > + SNDRV_PCM_FMTBIT_S18_3LE, > }, > .capture = { > .stream_name = "PCM Capture", > .channels_min = 2, > .channels_max = 2, > .rates = PM860X_RATES, > - .formats = SNDRV_PCM_FORMAT_S16_LE | \ > - SNDRV_PCM_FORMAT_S18_3LE, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | \ > + SNDRV_PCM_FMTBIT_S18_3LE, > }, > .ops = &pm860x_pcm_dai_ops, > }, { > @@ -1207,16 +1207,16 @@ static struct snd_soc_dai_driver pm860x_dai[] = { > .channels_min = 2, > .channels_max = 2, > .rates = SNDRV_PCM_RATE_8000_48000, > - .formats = SNDRV_PCM_FORMAT_S16_LE | \ > - SNDRV_PCM_FORMAT_S18_3LE, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | \ > + SNDRV_PCM_FMTBIT_S18_3LE, > }, > .capture = { > .stream_name = "I2S Capture", > .channels_min = 2, > .channels_max = 2, > .rates = SNDRV_PCM_RATE_8000_48000, > - .formats = SNDRV_PCM_FORMAT_S16_LE | \ > - SNDRV_PCM_FORMAT_S18_3LE, > + .formats = SNDRV_PCM_FMTBIT_S16_LE | \ > + SNDRV_PCM_FMTBIT_S18_3LE, > }, > .ops = &pm860x_i2s_dai_ops, > }, > diff --git a/sound/soc/codecs/stac9766.c b/sound/soc/codecs/stac9766.c > index 2341e8e..ed4cca7 100644 > --- a/sound/soc/codecs/stac9766.c > +++ b/sound/soc/codecs/stac9766.c > @@ -320,7 +320,7 @@ static struct snd_soc_dai_driver stac9766_dai[] = { > .channels_max = 2, > .rates = SNDRV_PCM_RATE_32000 | \ > SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000, > - .formats = SNDRV_PCM_FORMAT_IEC958_SUBFRAME_BE, > + .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE, > }, > /* alsa ops */ > .ops = &stac9766_dai_ops_digital, > diff --git a/sound/soc/codecs/wm8900.c b/sound/soc/codecs/wm8900.c > index e7d2ecd..493faf5 100644 > --- a/sound/soc/codecs/wm8900.c > +++ b/sound/soc/codecs/wm8900.c > @@ -998,8 +998,8 @@ static int wm8900_digital_mute(struct snd_soc_dai *codec_dai, int mute) > SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000) > > #define WM8900_PCM_FORMATS \ > - (SNDRV_PCM_FORMAT_S16_LE | SNDRV_PCM_FORMAT_S20_3LE | \ > - SNDRV_PCM_FORMAT_S24_LE) > + (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \ > + SNDRV_PCM_FMTBIT_S24_LE) > > static const struct snd_soc_dai_ops wm8900_dai_ops = { > .hw_params = wm8900_hw_params, > diff --git a/sound/soc/codecs/wm9713.c b/sound/soc/codecs/wm9713.c > index 9d18a0e..89cd2d6 100644 > --- a/sound/soc/codecs/wm9713.c > +++ b/sound/soc/codecs/wm9713.c > @@ -1054,8 +1054,8 @@ static int ac97_aux_prepare(struct snd_pcm_substream *substream, > SNDRV_PCM_RATE_48000) > > #define WM9713_PCM_FORMATS \ > - (SNDRV_PCM_FORMAT_S16_LE | SNDRV_PCM_FORMAT_S20_3LE | \ > - SNDRV_PCM_FORMAT_S24_LE) > + (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \ > + SNDRV_PCM_FMTBIT_S24_LE) > > static const struct snd_soc_dai_ops wm9713_dai_ops_hifi = { > .prepare = ac97_hifi_prepare, > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/