projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d36455a
)
ALSA: pcm: Mark expected switch fall-through
author
Gustavo A. R. Silva
<gustavo@embeddedor.com>
Wed, 1 Aug 2018 15:58:25 +0000
(10:58 -0500)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 1 Aug 2018 16:13:04 +0000
(18:13 +0200)
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID:
1357375
("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/oss/pcm_plugin.c
patch
|
blob
|
history
diff --git
a/sound/core/oss/pcm_plugin.c
b/sound/core/oss/pcm_plugin.c
index 85bab922ce69f7887d09c73924b00fbe7eab371f..0391cb1a4f190cc399c845b388643ffd28a7a218 100644
(file)
--- a/
sound/core/oss/pcm_plugin.c
+++ b/
sound/core/oss/pcm_plugin.c
@@
-353,6
+353,7
@@
snd_pcm_format_t snd_pcm_plug_slave_format(snd_pcm_format_t format,
if (snd_mask_test(format_mask, (__force int)format1))
return format1;
}
+ /* fall through */
default:
return (__force snd_pcm_format_t)-EINVAL;
}