summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Delaunay <[email protected]>2020-07-07 14:25:15 +0200
committerLokesh Vutla <[email protected]>2020-07-13 20:58:34 +0530
commit865fdfddce467f446b64f2aa7ba77f9dd0a48a6b (patch)
tree5cf0e2cef68f12aebe961969430da0cc25c6f910
parent82c829d476f6239ccedc0474bd01850022175125 (diff)
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 <[email protected]>
-rw-r--r--arch/arm/mach-k3/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c
index 9695b2236ec..63bf0606166 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();
}