Re: [PATCH v4 03/39] mmc: msm_sdhci: use modern clock handling

2024-02-19 Thread Dan Carpenter
On Thu, Feb 15, 2024 at 08:52:21PM +, Caleb Connolly wrote: > static int msm_sdc_clk_init(struct udevice *dev) > { > - int node = dev_of_offset(dev); > - uint clk_rate = fdtdec_get_uint(gd->fdt_blob, node, "clock-frequency", > - 40); > -

Re: [PATCH v4 03/39] mmc: msm_sdhci: use modern clock handling

2024-02-19 Thread Sumit Garg
On Fri, 16 Feb 2024 at 02:22, Caleb Connolly wrote: > > Use the clk_* helper functions and the correct property name for clocks. > > Reviewed-by: Neil Armstrong > Signed-off-by: Caleb Connolly > --- > drivers/mmc/msm_sdhci.c | 69 > + > 1 file

[PATCH v4 03/39] mmc: msm_sdhci: use modern clock handling

2024-02-15 Thread Caleb Connolly
Use the clk_* helper functions and the correct property name for clocks. Reviewed-by: Neil Armstrong Signed-off-by: Caleb Connolly --- drivers/mmc/msm_sdhci.c | 69 + 1 file changed, 47 insertions(+), 22 deletions(-) diff --git