Re: [PATCH v2] clk: update clk_clean_rate_cache to use private clk struct

2022-10-19 Thread Sean Anderson
On Mon, 20 Jun 2022 15:37:25 +0200, Patrick Delaunay wrote: > In clk_clean_rate_cache, clk->rate should update the private clock > struct, in particular when CCF is activated, to save the cached > rate value. > > When clk_get_parent_rate is called, the cached information > is read from

Re: [Uboot-stm32] [PATCH v2] clk: update clk_clean_rate_cache to use private clk struct

2022-09-06 Thread Patrice CHOTARD
Hi Patrick On 6/20/22 15:37, Patrick Delaunay wrote: > In clk_clean_rate_cache, clk->rate should update the private clock > struct, in particular when CCF is activated, to save the cached > rate value. > > When clk_get_parent_rate is called, the cached information > is read from pclk->rate, with

Re: [RESEND PATCH v2] clk: update clk_clean_rate_cache to use private clk struct

2022-08-12 Thread Sean Anderson
Hi Patrick, Sorry for the (very late) response. On 7/12/22 8:24 AM, Patrick Delaunay wrote: In clk_clean_rate_cache, clk->rate should update the private clock struct, in particular when CCF is activated, to save the cached rate value. When clk_get_parent_rate is called, the cached information

[RESEND PATCH v2] clk: update clk_clean_rate_cache to use private clk struct

2022-07-12 Thread Patrick Delaunay
In clk_clean_rate_cache, clk->rate should update the private clock struct, in particular when CCF is activated, to save the cached rate value. When clk_get_parent_rate is called, the cached information is read from pclk->rate, with pclk = clk_get_parent(clk). As the cached is read from private

[PATCH v2] clk: update clk_clean_rate_cache to use private clk struct

2022-06-20 Thread Patrick Delaunay
In clk_clean_rate_cache, clk->rate should update the private clock struct, in particular when CCF is activated, to save the cached rate value. When clk_get_parent_rate is called, the cached information is read from pclk->rate, with pclk = clk_get_parent(clk). As the cached is read from private