[alsa-devel] [PATCH] Changed the if-else case to switch case
anish kumar
yesanishhere at gmail.com
Thu Feb 18 19:36:20 CET 2016
Signed-off-by: anish kumar <yesanishhere at gmail.com>
---
sound/soc/codecs/max9867.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index b9d989f..5a8481b 100755
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -212,16 +212,22 @@ static int max9867_dai_hw_params(struct snd_pcm_substream *substream,
switch (snd_pcm_format_width(params_format(params))) {
case 8:
case 16:
- if (pclk_bclk_ratio == 2)
+ switch (pclk_bclk_ratio) {
+ case 2:
bclk_value = MAX9867_IFC1B_PCLK_2;
- else if (pclk_bclk_ratio == 4)
+ break;
+ case 4:
bclk_value = MAX9867_IFC1B_PCLK_4;
- else if (pclk_bclk_ratio == 8)
+ break;
+ case 8:
bclk_value = MAX9867_IFC1B_PCLK_8;
- else if (pclk_bclk_ratio == 16)
+ break;
+ case 16:
bclk_value = MAX9867_IFC1B_PCLK_16;
- else {
- dev_err(codec->dev, "unsupported sampling rate\n");
+ break;
+ default:
+ dev_err(codec->dev,
+ "unsupported sampling rate\n");
return -EINVAL;
}
break;
--
1.9.3
More information about the Alsa-devel
mailing list