Message ID | 20220701125515.32332-1-srinivas.kandagatla@linaro.org |
---|---|
State | Accepted |
Commit | 68f26639dc40b5d6aca201f3e250a1538e68eae6 |
Headers | show |
Series | ASoC: codecs: wsa883x: add missing break statement | expand |
On Fri, 1 Jul 2022 13:55:15 +0100, Srinivas Kandagatla wrote: > Add missing break in one of the switch statement. > > Applied to broonie/sound.git for-next Thanks! [1/1] ASoC: codecs: wsa883x: add missing break statement commit: 68f26639dc40b5d6aca201f3e250a1538e68eae6 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
diff --git a/sound/soc/codecs/wsa883x.c b/sound/soc/codecs/wsa883x.c index 40c7d64a9c41..dcd88175b9cd 100644 --- a/sound/soc/codecs/wsa883x.c +++ b/sound/soc/codecs/wsa883x.c @@ -1204,6 +1204,7 @@ static int wsa883x_spkr_event(struct snd_soc_dapm_widget *w, WSA883X_SPKR_PWM_FREQ_F300KHZ); snd_soc_component_write_field(component, WSA883X_DRE_CTL_0, WSA883X_DRE_PROG_DELAY_MASK, 0x9); + break; default: break; }
Add missing break in one of the switch statement. Reported-by: kernel test robot <lkp@intel.com> Fixes: cdb09e623143 ("ASoC: codecs: wsa883x: add control, dapm widgets and map") Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> --- sound/soc/codecs/wsa883x.c | 1 + 1 file changed, 1 insertion(+)