Browse Source

ASoC: codec: Update audio external codec clocks

Update audio external clock nodes to avoid redundant
parent clock enablement.

Change-Id: I5a268c7e1fab2167c6179f76fc861393808b66ae
Signed-off-by: Sudheer Papothi <[email protected]>
Sudheer Papothi 4 years ago
parent
commit
597248558d
1 changed files with 1 additions and 20 deletions
  1. 1 20
      asoc/codecs/audio-ext-clk-up.c

+ 1 - 20
asoc/codecs/audio-ext-clk-up.c

@@ -1,5 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0-only
-/* Copyright (c) 2015-2020, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  */
 
 #include <linux/kernel.h>
@@ -165,16 +165,6 @@ static u8 audio_ext_clk_get_parent(struct clk_hw *hw)
 		}
 		pr_debug("%s: parent index = %u\n", __func__, ret);
 		return ret;
-	} else if ((clk_priv->clk_src >= AUDIO_EXT_CLK_LPASS10) &&
-		    (clk_priv->clk_src < AUDIO_EXT_CLK_LPASS13) &&
-		     clk_priv->clk_name) {
-		for (i = 0; i < num_parents; i++) {
-			if (!strcmp(parent_names[i],
-					clk_priv->clk_name))
-				ret = i;
-		}
-		pr_debug("%s: parent index = %u\n", __func__, ret);
-		return ret;
 	} else
 		return 0;
 }
@@ -448,9 +438,6 @@ static struct audio_ext_clk audio_clk_array[] = {
 			.div = 1,
 			.hw.init = &(struct clk_init_data){
 				.name = "audio_lpass_mclk10",
-				.parent_names = (const char *[])
-							{ "audio_lpass_mclk6" },
-				.num_parents = 1,
 				.ops = &audio_ext_clk_ops,
 			},
 		},
@@ -462,9 +449,6 @@ static struct audio_ext_clk audio_clk_array[] = {
 			.div = 1,
 			.hw.init = &(struct clk_init_data){
 				.name = "audio_lpass_mclk11",
-				.parent_names = (const char *[])
-							{ "audio_lpass_mclk6" },
-				.num_parents = 1,
 				.ops = &audio_ext_clk_ops,
 			},
 		},
@@ -476,9 +460,6 @@ static struct audio_ext_clk audio_clk_array[] = {
 			.div = 1,
 			.hw.init = &(struct clk_init_data){
 				.name = "audio_lpass_mclk12",
-				.parent_names = (const char *[])
-							{ "audio_lpass_mclk6" },
-				.num_parents = 1,
 				.ops = &audio_ext_clk_ops,
 			},
 		},