]> git.dujemihanovic.xyz Git - u-boot.git/commit
sunxi: move #ifdef guards around tzpc_init() to header file
authorAndre Przywara <andre.przywara@arm.com>
Thu, 7 Dec 2023 15:09:51 +0000 (15:09 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 22 Apr 2024 00:12:25 +0000 (01:12 +0100)
commit02780a1c2675916bea8dbfb594bba7936ff538d5
treeb08466f1184e254f335c0e77d6e53885b2944c0d
parent6f68b9ce6cd180e5dc8d469a82db0cb48cc8d0ef
sunxi: move #ifdef guards around tzpc_init() to header file

Some later 32-bit SoCs require some setup of the Secure Peripherals
Controller, which is handled in tzpc_init().
At the moment this is guarded in board.c by some #ifdefs selecting the
SoCs that need it.

Move those #ifdef guards into the header file, providing an empty stub
function for all other SoCs, so that the #ifdefs can be removed from the
.c file, to improve readability.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/include/asm/arch-sunxi/tzpc.h
arch/arm/mach-sunxi/board.c