diff options
author | Tom Rix <trix@redhat.com> | 2020-10-19 18:48:57 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-10-26 15:27:13 +0100 |
commit | ad26098970b637f4565b110df929d74eb2c2652e (patch) | |
tree | ffe9877e4c56b8ebda480af358b072ff323e306b /sound/soc/intel | |
parent | ALSA: fix kernel-doc markups (diff) | |
download | linux-ad26098970b637f4565b110df929d74eb2c2652e.tar.xz linux-ad26098970b637f4565b110df929d74eb2c2652e.zip |
ALSA: remove unneeded break
A break is not needed if it is preceded by a return, goto
or break
Signed-off-by: Tom Rix <trix@redhat.com>
Acked-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20201019164857.27223-1-trix@redhat.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/intel')
-rw-r--r-- | sound/soc/intel/skylake/skl-pcm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/intel/skylake/skl-pcm.c b/sound/soc/intel/skylake/skl-pcm.c index bbe8d782e0af..b1ca64d2f7ea 100644 --- a/sound/soc/intel/skylake/skl-pcm.c +++ b/sound/soc/intel/skylake/skl-pcm.c @@ -502,7 +502,6 @@ static int skl_pcm_trigger(struct snd_pcm_substream *substream, int cmd, if (ret < 0) return ret; return skl_run_pipe(skl, mconfig->pipe); - break; case SNDRV_PCM_TRIGGER_PAUSE_PUSH: case SNDRV_PCM_TRIGGER_SUSPEND: |