* [PATCH 0/7] ASoC: Mark expected switch fall-throughs
@ 2018-08-03 16:26 Gustavo A. R. Silva
2018-08-03 16:31 ` [PATCH 4/7] ASoC: omap-dmic: " Gustavo A. R. Silva
2018-08-03 16:32 ` [PATCH 5/7] ASoC: omap-mcpdm: Mark expected switch fall-throughs Gustavo A. R. Silva
0 siblings, 2 replies; 5+ messages in thread
From: Gustavo A. R. Silva @ 2018-08-03 16:26 UTC (permalink / raw)
To: linux-kernel, Timur Tabi, Nicolin Chen, Xiubo Li, Fabio Estevam,
linuxppc-dev, Pierre-Louis Bossart, Peter Ujfalusi, Jarkko Nikula,
linux-omap, Krzysztof Kozlowski, Sangbeom Kim, Sylwester Nawrocki
Cc: alsa-devel, Gustavo A. R. Silva, Liam Girdwood, Takashi Iwai,
Mark Brown
Hi all,
In preparation to enabling -Wimplicit-fallthrough, this patchset aims
to add some annotations in order to mark switch cases where we are
expecting to fall through.
Thanks
Gustavo A. R. Silva (7):
ASoC: davinci-i2s: mark expected switch fall-through
ASoC: fsl_esai: Mark expected switch fall-through
ASoC: Intel: skl-pcm: Mark expected switch fall-through
ASoC: omap-dmic: Mark expected switch fall-throughs
ASoC: omap-mcpdm: MArk expected switch fall-throughs
ASoC: samsung: i2s: Mark expected switch fall-through
ASoC: core: mark expected switch fall-through
sound/soc/davinci/davinci-i2s.c | 1 +
sound/soc/fsl/fsl_esai.c | 1 +
sound/soc/intel/skylake/skl-pcm.c | 1 +
sound/soc/omap/omap-dmic.c | 2 ++
sound/soc/omap/omap-mcpdm.c | 4 ++++
sound/soc/samsung/i2s.c | 1 +
sound/soc/soc-core.c | 1 +
7 files changed, 11 insertions(+)
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 4/7] ASoC: omap-dmic: Mark expected switch fall-throughs
2018-08-03 16:26 [PATCH 0/7] ASoC: Mark expected switch fall-throughs Gustavo A. R. Silva
@ 2018-08-03 16:31 ` Gustavo A. R. Silva
2018-08-03 17:01 ` Applied "ASoC: omap-dmic: Mark expected switch fall-throughs" to the asoc tree Mark Brown
2018-08-03 16:32 ` [PATCH 5/7] ASoC: omap-mcpdm: Mark expected switch fall-throughs Gustavo A. R. Silva
1 sibling, 1 reply; 5+ messages in thread
From: Gustavo A. R. Silva @ 2018-08-03 16:31 UTC (permalink / raw)
To: Peter Ujfalusi, Jarkko Nikula, linux-omap, linux-kernel
Cc: alsa-devel, Gustavo A. R. Silva, Liam Girdwood, Takashi Iwai,
Mark Brown
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 1468847 ("Missing break in switch")
Addresses-Coverity-ID: 1468849 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
sound/soc/omap/omap-dmic.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
index 51dd7c6..fe96627 100644
--- a/sound/soc/omap/omap-dmic.c
+++ b/sound/soc/omap/omap-dmic.c
@@ -213,8 +213,10 @@ static int omap_dmic_dai_hw_params(struct snd_pcm_substream *substream,
switch (channels) {
case 6:
dmic->ch_enabled |= OMAP_DMIC_UP3_ENABLE;
+ /* fall through */
case 4:
dmic->ch_enabled |= OMAP_DMIC_UP2_ENABLE;
+ /* fall through */
case 2:
dmic->ch_enabled |= OMAP_DMIC_UP1_ENABLE;
break;
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 5/7] ASoC: omap-mcpdm: Mark expected switch fall-throughs
2018-08-03 16:26 [PATCH 0/7] ASoC: Mark expected switch fall-throughs Gustavo A. R. Silva
2018-08-03 16:31 ` [PATCH 4/7] ASoC: omap-dmic: " Gustavo A. R. Silva
@ 2018-08-03 16:32 ` Gustavo A. R. Silva
2018-08-03 17:01 ` Applied "ASoC: omap-mcpdm: Mark expected switch fall-throughs" to the asoc tree Mark Brown
1 sibling, 1 reply; 5+ messages in thread
From: Gustavo A. R. Silva @ 2018-08-03 16:32 UTC (permalink / raw)
To: Peter Ujfalusi, Jarkko Nikula, linux-omap, linux-kernel
Cc: alsa-devel, Takashi Iwai, Jaroslav Kysela, Liam Girdwood,
Mark Brown, Gustavo A. R. Silva
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 1369526 ("Missing break in switch")
Addresses-Coverity-ID: 1369529 ("Missing break in switch")
Addresses-Coverity-ID: 1451415 ("Missing break in switch")
Addresses-Coverity-ID: 115103 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
sound/soc/omap/omap-mcpdm.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/soc/omap/omap-mcpdm.c b/sound/soc/omap/omap-mcpdm.c
index 0e97360..4c1be36 100644
--- a/sound/soc/omap/omap-mcpdm.c
+++ b/sound/soc/omap/omap-mcpdm.c
@@ -310,15 +310,19 @@ static int omap_mcpdm_dai_hw_params(struct snd_pcm_substream *substream,
/* up to 3 channels for capture */
return -EINVAL;
link_mask |= 1 << 4;
+ /* fall through */
case 4:
if (stream == SNDRV_PCM_STREAM_CAPTURE)
/* up to 3 channels for capture */
return -EINVAL;
link_mask |= 1 << 3;
+ /* fall through */
case 3:
link_mask |= 1 << 2;
+ /* fall through */
case 2:
link_mask |= 1 << 1;
+ /* fall through */
case 1:
link_mask |= 1 << 0;
break;
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: omap-dmic: Mark expected switch fall-throughs" to the asoc tree
2018-08-03 16:31 ` [PATCH 4/7] ASoC: omap-dmic: " Gustavo A. R. Silva
@ 2018-08-03 17:01 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2018-08-03 17:01 UTC (permalink / raw)
Cc: alsa-devel, Gustavo A. R. Silva, Takashi Iwai, linux-kernel,
Liam Girdwood, Peter Ujfalusi, Mark Brown, linux-omap,
Jarkko Nikula
The patch
ASoC: omap-dmic: Mark expected switch fall-throughs
has been applied to the asoc tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From a773c3b6be185d171e2755ac715e8b1ea099ebbc Mon Sep 17 00:00:00 2001
From: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
Date: Fri, 3 Aug 2018 11:31:48 -0500
Subject: [PATCH] ASoC: omap-dmic: Mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 1468847 ("Missing break in switch")
Addresses-Coverity-ID: 1468849 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/omap/omap-dmic.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
index 51dd7c65096b..fe966272bd0c 100644
--- a/sound/soc/omap/omap-dmic.c
+++ b/sound/soc/omap/omap-dmic.c
@@ -213,8 +213,10 @@ static int omap_dmic_dai_hw_params(struct snd_pcm_substream *substream,
switch (channels) {
case 6:
dmic->ch_enabled |= OMAP_DMIC_UP3_ENABLE;
+ /* fall through */
case 4:
dmic->ch_enabled |= OMAP_DMIC_UP2_ENABLE;
+ /* fall through */
case 2:
dmic->ch_enabled |= OMAP_DMIC_UP1_ENABLE;
break;
--
2.18.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: omap-mcpdm: Mark expected switch fall-throughs" to the asoc tree
2018-08-03 16:32 ` [PATCH 5/7] ASoC: omap-mcpdm: Mark expected switch fall-throughs Gustavo A. R. Silva
@ 2018-08-03 17:01 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2018-08-03 17:01 UTC (permalink / raw)
Cc: alsa-devel, Gustavo A. R. Silva, Takashi Iwai, linux-kernel,
Liam Girdwood, Peter Ujfalusi, Mark Brown, linux-omap,
Jarkko Nikula
The patch
ASoC: omap-mcpdm: Mark expected switch fall-throughs
has been applied to the asoc tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 85c81941d5033fc8a68646823d3157840c9de8b3 Mon Sep 17 00:00:00 2001
From: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
Date: Fri, 3 Aug 2018 11:32:52 -0500
Subject: [PATCH] ASoC: omap-mcpdm: Mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 1369526 ("Missing break in switch")
Addresses-Coverity-ID: 1369529 ("Missing break in switch")
Addresses-Coverity-ID: 1451415 ("Missing break in switch")
Addresses-Coverity-ID: 115103 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/omap/omap-mcpdm.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/soc/omap/omap-mcpdm.c b/sound/soc/omap/omap-mcpdm.c
index 0e97360f9890..4c1be36c2207 100644
--- a/sound/soc/omap/omap-mcpdm.c
+++ b/sound/soc/omap/omap-mcpdm.c
@@ -310,15 +310,19 @@ static int omap_mcpdm_dai_hw_params(struct snd_pcm_substream *substream,
/* up to 3 channels for capture */
return -EINVAL;
link_mask |= 1 << 4;
+ /* fall through */
case 4:
if (stream == SNDRV_PCM_STREAM_CAPTURE)
/* up to 3 channels for capture */
return -EINVAL;
link_mask |= 1 << 3;
+ /* fall through */
case 3:
link_mask |= 1 << 2;
+ /* fall through */
case 2:
link_mask |= 1 << 1;
+ /* fall through */
case 1:
link_mask |= 1 << 0;
break;
--
2.18.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-08-03 17:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-03 16:26 [PATCH 0/7] ASoC: Mark expected switch fall-throughs Gustavo A. R. Silva
2018-08-03 16:31 ` [PATCH 4/7] ASoC: omap-dmic: " Gustavo A. R. Silva
2018-08-03 17:01 ` Applied "ASoC: omap-dmic: Mark expected switch fall-throughs" to the asoc tree Mark Brown
2018-08-03 16:32 ` [PATCH 5/7] ASoC: omap-mcpdm: Mark expected switch fall-throughs Gustavo A. R. Silva
2018-08-03 17:01 ` Applied "ASoC: omap-mcpdm: Mark expected switch fall-throughs" to the asoc tree Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).