diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-06-04 02:27:14 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-04 15:27:07 +0100 |
commit | 50d790012a48f0f2f1dc8e4c214054283e529ae9 (patch) | |
tree | 4266fb1d57512dd08f6f2ca163731514781afdc9 /sound | |
parent | f3b3bceb859c76a91ddd43c602428e4451598b3d (diff) | |
download | linux-50d790012a48f0f2f1dc8e4c214054283e529ae9.tar.bz2 |
ASoC: ti: davinci-mcasp: Fix fall-through warning for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
by explicitly adding a fallthrough; statement.
Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Acked-by: Peter Ujfalusi <peter.ujflausi@gmail.com>
Link: https://lore.kernel.org/r/20210604072714.GA244640@embeddedor
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/ti/davinci-mcasp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/ti/davinci-mcasp.c b/sound/soc/ti/davinci-mcasp.c index b94220306d1a..017a5a5e56cd 100644 --- a/sound/soc/ti/davinci-mcasp.c +++ b/sound/soc/ti/davinci-mcasp.c @@ -2317,6 +2317,7 @@ static int davinci_mcasp_probe(struct platform_device *pdev) break; default: dev_err(&pdev->dev, "No DMA controller found (%d)\n", ret); + fallthrough; case -EPROBE_DEFER: goto err; } |