The mailbox_s10 is only used to retrieve the QSPI configuration from the SDM. The barebox PBL retrieves this configuration and stores the result in a handover register. barebox proper retrieves the status from the handover register and doesn't interact with the SDM via mailbox_s10 get.
Thus, remove malbox_s10 from barebox proper, since it's not used there. Signed-off-by: Michael Tretter <[email protected]> --- arch/arm/mach-socfpga/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-socfpga/Makefile b/arch/arm/mach-socfpga/Makefile index c54d2a289341..6a8117874136 100644 --- a/arch/arm/mach-socfpga/Makefile +++ b/arch/arm/mach-socfpga/Makefile @@ -24,7 +24,6 @@ pbl-$(CONFIG_ARCH_SOCFPGA_AGILEX5) += soc64-system-manager.o \ atf.o obj-$(CONFIG_ARCH_SOCFPGA_AGILEX5) += secure_reg_helper.o \ - mailbox_s10.o \ smc_api.o ifdef CONFIG_ARCH_SOCFPGA_CYCLONE5 -- 2.47.3
