From: Takashi Iwai Date: Mon, 28 Oct 2013 11:40:46 +0000 (+0100) Subject: ALSA: pcm: Add fallthru comments X-Git-Tag: v3.13-rc1~2^2~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f96153bc613c526f5ea39a7f366b3bdf70249be;p=kernel%2Fkernel-generic.git ALSA: pcm: Add fallthru comments Just to improve readability. Spotted by coverity CID 115002 and 115003. Signed-off-by: Takashi Iwai --- diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index b71be57..01a5e05 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -2428,6 +2428,7 @@ static int snd_pcm_hwsync(struct snd_pcm_substream *substream) case SNDRV_PCM_STATE_DRAINING: if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) goto __badfd; + /* Fall through */ case SNDRV_PCM_STATE_RUNNING: if ((err = snd_pcm_update_hw_ptr(substream)) < 0) break; @@ -2460,6 +2461,7 @@ static int snd_pcm_delay(struct snd_pcm_substream *substream, case SNDRV_PCM_STATE_DRAINING: if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) goto __badfd; + /* Fall through */ case SNDRV_PCM_STATE_RUNNING: if ((err = snd_pcm_update_hw_ptr(substream)) < 0) break;