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/20250710-arm32-clk-round-rate-v1-0-a9146b77aca9@xxxxxxxxxx/T/ > - clk/tegra (6): https://lore.kernel.org/linux-clk/20250710-clk-tegra-round-rate-v1-0-e48ac3df4279@xxxxxxxxxx/T/ > - clk/ti (7): https://lore.kernel.org/linux-clk/20250811-b4-clk-ti-round-rate-v1-0-cc0840594a49@xxxxxxxxxx/T/ > - clocksource (1): https://lore.kernel.org/linux-clk/20250810-clocksource-round-rate-v1-1-486ef53e45eb@xxxxxxxxxx/T/ > - drm (9): https://lore.kernel.org/linux-clk/20250811-drm-clk-round-rate-v2-0-4a91ccf239cf@xxxxxxxxxx/T/ > - drm/msm (7): https://lore.kernel.org/linux-clk/20250810-drm-msm-phy-clk-round-rate-v2-0-0fd1f7979c83@xxxxxxxxxx/T/ > - i2c (1): https://lore.kernel.org/linux-clk/20250810-i2c-round-rate-v1-1-9488b57153e7@xxxxxxxxxx/T/ > - media (4): https://lore.kernel.org/linux-clk/20250710-media-clk-round-rate-v1-0-a9617b061741@xxxxxxxxxx/T/ > - mips (1): https://lore.kernel.org/linux-clk/20250810-mips-round-rate-v1-1-54e424c520dd@xxxxxxxxxx/T/ > - net (1): https://lore.kernel.org/linux-clk/20250810-net-round-rate-v1-1-dbb237c9fe5c@xxxxxxxxxx/T/ > - peci (1): https://lore.kernel.org/linux-clk/20250810-peci-round-rate-v1-1-ec96d216a455@xxxxxxxxxx/T/ > - phy (9): https://lore.kernel.org/linux-phy/20250810-phy-clk-round-rate-v2-0-9162470bb9f2@xxxxxxxxxx/T/ > - pmdomain (1): https://lore.kernel.org/linux-clk/20250810-pmdomain-round-rate-v1-1-1a90dbacdeb6@xxxxxxxxxx/T/ > - tty (1): https://lore.kernel.org/linux-clk/20250810-tty-round-rate-v1-1-849009f3bdfd@xxxxxxxxxx/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