Re: [PATCH 000/114] clk: convert drivers from deprecated round_rate() to determine_rate()
Brian Masney <[email protected]>
| Newsgroups | dev.linux.lists.sophgo,dev.linux.lists.asahi,dev.linux.lists.imx,dev.linux.lists.soc,dev.linux.lists.spacemit,org.infradead.lists.linux-mediatek,org.infradead.lists.linux-riscv,org.infradead.lists.linux-rockchip,org.kernel.vger.arm-scmi,org.kernel.vger.linux-arm-msm,org.kernel.vger.linux-clk,org.kernel.vger.linux-kernel,org.kernel.vger.linux-mips,org.kernel.vger.linux-renesas-soc,org.kernel.vger.linux-samsung-soc |
|---|---|
| Message-ID | <aJsZ7bs0OMXcrStU@x1> |
On Mon, Aug 11, 2025 at 11:17:52AM -0400, Brian Masney via B4 Relay wrote: > Once all of my conversion patches across the various trees in the kernel > have been merged, I will post a small series that removes the > round_rate() op from the clk core and the documentation. Here's the > other patch series that are currently in flight that need to be merged > before we can remove round_rate() from the core. > > - arm32 (3): https://lore.kernel.org/linux-clk/[email protected]/T/ > - clk/tegra (6): https://lore.kernel.org/linux-clk/[email protected]/T/ > - clk/ti (7): https://lore.kernel.org/linux-clk/[email protected]/T/ > - clocksource (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - drm (9): https://lore.kernel.org/linux-clk/[email protected]/T/ > - drm/msm (7): https://lore.kernel.org/linux-clk/[email protected]/T/ > - i2c (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - media (4): https://lore.kernel.org/linux-clk/[email protected]/T/ > - mips (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - net (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - peci (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - phy (9): https://lore.kernel.org/linux-phy/[email protected]/T/ > - pmdomain (1): https://lore.kernel.org/linux-clk/[email protected]/T/ > - tty (1): https://lore.kernel.org/linux-clk/[email protected]/T/ Konrad noticed on patch 90 the space after the cast. I thought I fixed all of those by hand, but apparently not. I looked through this series (and the others above) with `grep "u64) "` and `grep "long) "`, and found 4 other cases. Patch 38: clk: nxp: lpc32xx: convert from round_rate() to determine_rate() Patch 64: clk: x86: cgu: convert from round_rate() to determine_rate() Patch 68: clk: zynqmp: divider: convert from round_rate() to determine_rate() Patch 95: clk: rockchip: half-divider: convert from round_rate() to determine_rate() Brian