On Tue, May 7, 2024 at 1:53 AM Marek Szyprowski <m.szyprowski@xxxxxxxxxxx> wrote: > > Commit 4d11c62ca8d7 ("clkdev: report over-sized strings when creating > clkdev entries") revealed that clock lookup is registered for all fixed > clocks. The mentioned commit added a check if the registered name is not > too long. This fails for some clocks registered for Exynos542x SoCs family. > This lookup is a left-over from early common clock framework days, not > really needed nowadays, so remove it to avoid further issues. > > Signed-off-by: Marek Szyprowski <m.szyprowski@xxxxxxxxxxx> > --- > Here is the fix for the mentioned 4d11c62ca8d7 commit, which fixes > booting of Exynos542x SoCs: > https://lore.kernel.org/all/20240507064434.3213933-1-m.szyprowski@xxxxxxxxxxx/ > > This change is independent fix. I've tested it on all Exynos based boards > I have in my test lab. It would be great if someone could test it on > s3c64xx and s3c24xx based boards. > --- Thanks Marek, it fixes some warnings when booting the E850-96 board with current kernel-next (next-20240508), like: samsung_clk_register_fixed_rate: failed to register clock lookup for clk_rco_i3c_pmic ... But I guess 'ret' variable should be removed now, I'm seeing this build warning after applying this patch: drivers/clk/samsung/clk.c: In function 'samsung_clk_register_fixed_rate': drivers/clk/samsung/clk.c:142:20: warning: unused variable 'ret' [-Wunused-variable] Also, maybe add corresponding "Fixes" tag? Other than that: Reviewed-by: Sam Protsenko <semen.protsenko@xxxxxxxxxx> Tested-by: Sam Protsenko <semen.protsenko@xxxxxxxxxx> Thanks! [snip]