From: Clemens Ladisch <clemens@ladisch.de>
Date: Mon, 28 Jan 2008 07:32:58 +0000 (+0100)
Subject: [ALSA] oxygen: fix AK4396 double rate upper limit
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=236c4920ea825acbffa7bbba24c182ec6a9a8245;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git

[ALSA] oxygen: fix AK4396 double rate upper limit

Fix the upper sample rate limit for the double rate mode of the AK4396
to the value from the datasheet.

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
---

diff --git a/sound/pci/oxygen/hifier.c b/sound/pci/oxygen/hifier.c
index 05ea2b65843e..51c4d1ae9d02 100644
--- a/sound/pci/oxygen/hifier.c
+++ b/sound/pci/oxygen/hifier.c
@@ -90,7 +90,7 @@ static void set_ak4396_params(struct oxygen *chip,
 	value = data->ak4396_ctl2 & ~AK4396_DFS_MASK;
 	if (params_rate(params) <= 54000)
 		value |= AK4396_DFS_NORMAL;
-	else if (params_rate(params) < 120000)
+	else if (params_rate(params) <= 108000)
 		value |= AK4396_DFS_DOUBLE;
 	else
 		value |= AK4396_DFS_QUAD;
diff --git a/sound/pci/oxygen/oxygen.c b/sound/pci/oxygen/oxygen.c
index a0457a570946..840e4a66eacd 100644
--- a/sound/pci/oxygen/oxygen.c
+++ b/sound/pci/oxygen/oxygen.c
@@ -206,7 +206,7 @@ static void set_ak4396_params(struct oxygen *chip,
 	value = data->ak4396_ctl2 & ~AK4396_DFS_MASK;
 	if (params_rate(params) <= 54000)
 		value |= AK4396_DFS_NORMAL;
-	else if (params_rate(params) < 120000)
+	else if (params_rate(params) <= 108000)
 		value |= AK4396_DFS_DOUBLE;
 	else
 		value |= AK4396_DFS_QUAD;