alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Changed the if-else case to switch case
@ 2016-02-18 18:36 anish kumar
  2016-02-18 20:19 ` Applied "ASoC: max9867: Changed the if-else case to switch case" to the asoc tree Mark Brown
  0 siblings, 1 reply; 2+ messages in thread
From: anish kumar @ 2016-02-18 18:36 UTC (permalink / raw)
  To: broonie, lgirdwood; +Cc: alsa-devel, anish kumar

Signed-off-by: anish kumar <yesanishhere@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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-18 20:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-18 18:36 [PATCH] Changed the if-else case to switch case anish kumar
2016-02-18 20:19 ` Applied "ASoC: max9867: Changed the if-else case to switch case" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).