diff options
author | Shubhrajyoti Datta <[email protected]> | 2023-03-24 16:19:58 +0530 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2023-03-27 12:08:28 -0700 |
commit | 57e3bbd2cb8f98dfd78298998d42d6c4cd414083 (patch) | |
tree | 8c29d25a3531b89166b5347ca2971b8bca526398 | |
parent | fe15c26ee26efa11741a7b632e9f23b01aca4cc6 (diff) |
clk: zynqmp: pll: Remove the limit
The range is taken care in the zynqmp_pll_round_rate. Remove the rate range
in the zynqmp_clk_register_pll() to prevent the early truncation of the
frequencies and also allow multiple combinations of child and parent to get
more accurate rates.
Signed-off-by: Shubhrajyoti Datta <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/zynqmp/pll.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/clk/zynqmp/pll.c b/drivers/clk/zynqmp/pll.c index 0d3e1377b092..7411a7fd50ac 100644 --- a/drivers/clk/zynqmp/pll.c +++ b/drivers/clk/zynqmp/pll.c @@ -341,7 +341,5 @@ struct clk_hw *zynqmp_clk_register_pll(const char *name, u32 clk_id, return ERR_PTR(ret); } - clk_hw_set_rate_range(hw, PS_PLL_VCO_MIN, PS_PLL_VCO_MAX); - return hw; } |