Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1346915 > unrolled thread
| Started by | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| First post | 2016-03-01 20:10 +0100 |
| Last post | 2016-03-02 04:40 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 24/41] clk: zynq: Remove CLK_IS_ROOT Stephen Boyd <sboyd@codeaurora.org> - 2016-03-01 20:10 +0100
Re: [PATCH 24/41] clk: zynq: Remove CLK_IS_ROOT Sören Brinkmann <soren.brinkmann@xilinx.com> - 2016-03-02 04:40 +0100
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Date | 2016-03-01 20:10 +0100 |
| Subject | [PATCH 24/41] clk: zynq: Remove CLK_IS_ROOT |
| Message-ID | <r7XQg-4Tj-69@gated-at.bofh.it> |
This flag is a no-op now. Remove usage of the flag.
Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
drivers/clk/zynq/clkc.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/clk/zynq/clkc.c b/drivers/clk/zynq/clkc.c
index 38a65c3e62fc..88a2cab37f62 100644
--- a/drivers/clk/zynq/clkc.c
+++ b/drivers/clk/zynq/clkc.c
@@ -265,8 +265,7 @@ static void __init zynq_clk_setup(struct device_node *np)
pr_warn("ps_clk frequency not specified, using 33 MHz.\n");
tmp = 33333333;
}
- ps_clk = clk_register_fixed_rate(NULL, "ps_clk", NULL, CLK_IS_ROOT,
- tmp);
+ ps_clk = clk_register_fixed_rate(NULL, "ps_clk", NULL, 0, tmp);
/* PLLs */
clk = clk_register_zynq_pll("armpll_int", "ps_clk", SLCR_ARMPLL_CTRL,
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project
[toc] | [next] | [standalone]
| From | Sören Brinkmann <soren.brinkmann@xilinx.com> |
|---|---|
| Date | 2016-03-02 04:40 +0100 |
| Message-ID | <r85NL-1Xc-11@gated-at.bofh.it> |
| In reply to | #1346915 |
On Tue, 2016-03-01 at 11:00:09 -0800, Stephen Boyd wrote: > This flag is a no-op now. Remove usage of the flag. > > Cc: Sören Brinkmann <soren.brinkmann@xilinx.com> > Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Reviewed-by: Sören Brinkmann <soren.brinkmann@xilinx.com> Thanks, Sören
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web