linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries
@ 2021-03-17 12:22 Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 2/8] clk: qcom: dispcc-sm8250: " Dmitry Baryshkov
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/dispcc-sc7180.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/clk/qcom/dispcc-sc7180.c b/drivers/clk/qcom/dispcc-sc7180.c
index f487515701e3..3334bf9cfb94 100644
--- a/drivers/clk/qcom/dispcc-sc7180.c
+++ b/drivers/clk/qcom/dispcc-sc7180.c
@@ -19,8 +19,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CHIP_SLEEP_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_DISP_CC_PLL0_OUT_EVEN,
 	P_DISP_CC_PLL0_OUT_MAIN,
 	P_DP_PHY_PLL_LINK_CLK,
-- 
2.30.2


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

* [PATCH 2/8] clk: qcom: dispcc-sm8250: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 3/8] clk: qcom: gcc-sm8250: " Dmitry Baryshkov
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/dispcc-sm8250.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/drivers/clk/qcom/dispcc-sm8250.c b/drivers/clk/qcom/dispcc-sm8250.c
index 588575e1169d..86275814e055 100644
--- a/drivers/clk/qcom/dispcc-sm8250.c
+++ b/drivers/clk/qcom/dispcc-sm8250.c
@@ -21,23 +21,15 @@
 
 enum {
 	P_BI_TCXO,
-	P_CHIP_SLEEP_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_DISP_CC_PLL0_OUT_MAIN,
 	P_DISP_CC_PLL1_OUT_EVEN,
 	P_DISP_CC_PLL1_OUT_MAIN,
 	P_DP_PHY_PLL_LINK_CLK,
 	P_DP_PHY_PLL_VCO_DIV_CLK,
-	P_DPTX1_PHY_PLL_LINK_CLK,
-	P_DPTX1_PHY_PLL_VCO_DIV_CLK,
-	P_DPTX2_PHY_PLL_LINK_CLK,
-	P_DPTX2_PHY_PLL_VCO_DIV_CLK,
 	P_DSI0_PHY_PLL_OUT_BYTECLK,
 	P_DSI0_PHY_PLL_OUT_DSICLK,
 	P_DSI1_PHY_PLL_OUT_BYTECLK,
 	P_DSI1_PHY_PLL_OUT_DSICLK,
-	P_EDP_PHY_PLL_LINK_CLK,
-	P_EDP_PHY_PLL_VCO_DIV_CLK,
 };
 
 static struct pll_vco vco_table[] = {
-- 
2.30.2


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

* [PATCH 3/8] clk: qcom: gcc-sm8250: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 2/8] clk: qcom: dispcc-sm8250: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 4/8] clk: qcom: gpucc-sm8150: " Dmitry Baryshkov
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/gcc-sm8250.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/clk/qcom/gcc-sm8250.c b/drivers/clk/qcom/gcc-sm8250.c
index ab594a0f0c40..86626a027f6f 100644
--- a/drivers/clk/qcom/gcc-sm8250.c
+++ b/drivers/clk/qcom/gcc-sm8250.c
@@ -25,7 +25,6 @@
 enum {
 	P_BI_TCXO,
 	P_AUD_REF_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_GPLL0_OUT_EVEN,
 	P_GPLL0_OUT_MAIN,
 	P_GPLL4_OUT_MAIN,
-- 
2.30.2


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

* [PATCH 4/8] clk: qcom: gpucc-sm8150: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 2/8] clk: qcom: dispcc-sm8250: " Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 3/8] clk: qcom: gcc-sm8250: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 5/8] clk: qcom: gpucc-sm8250: " Dmitry Baryshkov
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/gpucc-sm8150.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/clk/qcom/gpucc-sm8150.c b/drivers/clk/qcom/gpucc-sm8150.c
index 27c40754b2c7..2b952f561537 100644
--- a/drivers/clk/qcom/gpucc-sm8150.c
+++ b/drivers/clk/qcom/gpucc-sm8150.c
@@ -21,7 +21,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CORE_BI_PLL_TEST_SE,
 	P_GPLL0_OUT_MAIN,
 	P_GPLL0_OUT_MAIN_DIV,
 	P_GPU_CC_PLL1_OUT_MAIN,
-- 
2.30.2


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

* [PATCH 5/8] clk: qcom: gpucc-sm8250: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
                   ` (2 preceding siblings ...)
  2021-03-17 12:22 ` [PATCH 4/8] clk: qcom: gpucc-sm8150: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 6/8] clk: qcom: videocc-sc7180: " Dmitry Baryshkov
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/gpucc-sm8250.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/clk/qcom/gpucc-sm8250.c b/drivers/clk/qcom/gpucc-sm8250.c
index 3fa7d1f9ff98..67c136a77efb 100644
--- a/drivers/clk/qcom/gpucc-sm8250.c
+++ b/drivers/clk/qcom/gpucc-sm8250.c
@@ -26,7 +26,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CORE_BI_PLL_TEST_SE,
 	P_GPLL0_OUT_MAIN,
 	P_GPLL0_OUT_MAIN_DIV,
 	P_GPU_CC_PLL0_OUT_MAIN,
-- 
2.30.2


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

* [PATCH 6/8] clk: qcom: videocc-sc7180: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
                   ` (3 preceding siblings ...)
  2021-03-17 12:22 ` [PATCH 5/8] clk: qcom: gpucc-sm8250: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 7/8] clk: qcom: videocc-sm8150: " Dmitry Baryshkov
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/videocc-sc7180.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/clk/qcom/videocc-sc7180.c b/drivers/clk/qcom/videocc-sc7180.c
index 276e5ecd4840..f5d04791a3cd 100644
--- a/drivers/clk/qcom/videocc-sc7180.c
+++ b/drivers/clk/qcom/videocc-sc7180.c
@@ -19,8 +19,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CHIP_SLEEP_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_VIDEO_PLL0_OUT_EVEN,
 	P_VIDEO_PLL0_OUT_MAIN,
 	P_VIDEO_PLL0_OUT_ODD,
-- 
2.30.2


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

* [PATCH 7/8] clk: qcom: videocc-sm8150: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
                   ` (4 preceding siblings ...)
  2021-03-17 12:22 ` [PATCH 6/8] clk: qcom: videocc-sc7180: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-03-17 12:22 ` [PATCH 8/8] clk: qcom: videocc-sm8250: " Dmitry Baryshkov
  2021-04-01  2:01 ` [PATCH 1/8] clk: qcom: dispcc-sc7180: " Stephen Boyd
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/videocc-sm8150.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/clk/qcom/videocc-sm8150.c b/drivers/clk/qcom/videocc-sm8150.c
index 3087e2ec8fd4..de09e5456555 100644
--- a/drivers/clk/qcom/videocc-sm8150.c
+++ b/drivers/clk/qcom/videocc-sm8150.c
@@ -20,8 +20,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CHIP_SLEEP_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_VIDEO_PLL0_OUT_EVEN,
 	P_VIDEO_PLL0_OUT_MAIN,
 	P_VIDEO_PLL0_OUT_ODD,
-- 
2.30.2


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

* [PATCH 8/8] clk: qcom: videocc-sm8250: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
                   ` (5 preceding siblings ...)
  2021-03-17 12:22 ` [PATCH 7/8] clk: qcom: videocc-sm8150: " Dmitry Baryshkov
@ 2021-03-17 12:22 ` Dmitry Baryshkov
  2021-04-01  2:01 ` [PATCH 1/8] clk: qcom: dispcc-sc7180: " Stephen Boyd
  7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2021-03-17 12:22 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Drop unused enum entries from the list of parent enums.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/clk/qcom/videocc-sm8250.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/clk/qcom/videocc-sm8250.c b/drivers/clk/qcom/videocc-sm8250.c
index b0efadc19634..06a8a2c98deb 100644
--- a/drivers/clk/qcom/videocc-sm8250.c
+++ b/drivers/clk/qcom/videocc-sm8250.c
@@ -21,8 +21,6 @@
 
 enum {
 	P_BI_TCXO,
-	P_CHIP_SLEEP_CLK,
-	P_CORE_BI_PLL_TEST_SE,
 	P_VIDEO_PLL0_OUT_MAIN,
 	P_VIDEO_PLL1_OUT_MAIN,
 };
-- 
2.30.2


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

* Re: [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries
  2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
                   ` (6 preceding siblings ...)
  2021-03-17 12:22 ` [PATCH 8/8] clk: qcom: videocc-sm8250: " Dmitry Baryshkov
@ 2021-04-01  2:01 ` Stephen Boyd
  7 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2021-04-01  2:01 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Dmitry Baryshkov, Michael Turquette
  Cc: linux-arm-msm, linux-clk

Quoting Dmitry Baryshkov (2021-03-17 05:22:14)
> Drop unused enum entries from the list of parent enums.
> 
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  drivers/clk/qcom/dispcc-sc7180.c | 2 --
>  1 file changed, 2 deletions(-)

I assume this series is superseded.

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

end of thread, other threads:[~2021-04-01  2:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17 12:22 [PATCH 1/8] clk: qcom: dispcc-sc7180: drop unused enum entries Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 2/8] clk: qcom: dispcc-sm8250: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 3/8] clk: qcom: gcc-sm8250: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 4/8] clk: qcom: gpucc-sm8150: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 5/8] clk: qcom: gpucc-sm8250: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 6/8] clk: qcom: videocc-sc7180: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 7/8] clk: qcom: videocc-sm8150: " Dmitry Baryshkov
2021-03-17 12:22 ` [PATCH 8/8] clk: qcom: videocc-sm8250: " Dmitry Baryshkov
2021-04-01  2:01 ` [PATCH 1/8] clk: qcom: dispcc-sc7180: " Stephen Boyd

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).