ASoC: wm8994: missing break in wm8994_aif3_hw_params()

The missing break here means that we always return early and the
function is a no-op.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@vger.kernel.org
This commit is contained in:
Dan Carpenter 2013-04-30 10:24:41 +03:00 committed by Mark Brown
parent c1be5a5b1b
commit 4495e46fe1
1 changed files with 1 additions and 0 deletions

View File

@ -2841,6 +2841,7 @@ static int wm8994_aif3_hw_params(struct snd_pcm_substream *substream,
default:
return 0;
}
break;
default:
return 0;
}