From e0f2719253f9387da07ccd7a11cc96d34c148254 Mon Sep 17 00:00:00 2001 From: Zidan Wang Date: Fri, 27 Nov 2015 11:20:49 +0800 Subject: [PATCH] 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) --- sound/soc/fsl/imx-audmux.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.17.1