From: Zidan Wang Date: Fri, 27 Nov 2015 03:20:49 +0000 (+0800) Subject: MLK-11915-07 ASoC: imx-audmux: fix missing break in switch X-Git-Tag: C0P2-H0.0--20200415~4004 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=e0f2719253f9387da07ccd7a11cc96d34c148254;p=linux.git MLK-11915-07 ASoC: imx-audmux: fix missing break in switch fix missing break in switch. Reported by Coverity. Signed-off-by: Zidan Wang (cherry picked from commit 302516a1dfca5758a34cbed939c9976679febb0c) --- diff --git a/sound/soc/fsl/imx-audmux.c b/sound/soc/fsl/imx-audmux.c index 7ceb8b122711..17766f8b09a8 100644 --- a/sound/soc/fsl/imx-audmux.c +++ b/sound/soc/fsl/imx-audmux.c @@ -343,6 +343,7 @@ static int imx_audmux_probe(struct platform_device *pdev) break; case IMX21_AUDMUX: reg_max = 6; + break; default: dev_err(&pdev->dev, "unsupported version!\n"); return -EINVAL;