]> git.dujemihanovic.xyz Git - u-boot.git/commit
sunxi: sun4i: make more clock functions SPL only
authorAndre Przywara <andre.przywara@arm.com>
Thu, 7 Dec 2023 16:06:51 +0000 (16:06 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 22 Apr 2024 00:12:26 +0000 (01:12 +0100)
commita2b2a47a16489e96e251fe2b0fab2ac9798be02f
treefd9beb3a880b9447e719564769542f83e270259d
parent8cb3c49454ef6d72a20bb9c96f7ae841591ed33c
sunxi: sun4i: make more clock functions SPL only

In clock_sun4i.c, responsible for (mostly early) clock setup on early
generation Allwinner SoCs, many functions are only needed by the SPL,
and are thus already guarded by CONFIG_SPL_BUILD.

Over the years drivers like for the UART or I2C were converted to DM,
so they care about clock setup themselves now, by using a proper DM clock
driver.

This means those devices need the clock setup functions here for the SPL
only. Include those functions into the existing CONFIG_SPL_BUILD guards,
so they are compiled for the SPL only.

This avoids unnecessary code in U-Boot proper and helps further
refactoring. Add some comments on the way to help understanding of the
file.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/mach-sunxi/clock_sun4i.c