From: Patrick Delaunay Date: Tue, 7 Jul 2020 12:25:15 +0000 (+0200) Subject: arm: k3: use correct weak function name spl_board_prepare_for_linux X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=865fdfddce467f446b64f2aa7ba77f9dd0a48a6b;p=u-boot.git arm: k3: use correct weak function name spl_board_prepare_for_linux Replace the function spl_board_prepare_for_boot_linux by the correct name of the weak function spl_board_prepare_for_linux defined in spl.h. Signed-off-by: Patrick Delaunay --- diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c index 9695b2236e..63bf060616 100644 --- a/arch/arm/mach-k3/common.c +++ b/arch/arm/mach-k3/common.c @@ -440,7 +440,7 @@ void spl_board_prepare_for_boot(void) dcache_disable(); } -void spl_board_prepare_for_boot_linux(void) +void spl_board_prepare_for_linux(void) { dcache_disable(); }