[Concept,v2,02/22] arm: Fix swtiching typo

Message ID 20250819185900.835939-3-sjg@u-boot.org
State New
Headers
Series efi: Improvements for the EFI app on ARM |

Commit Message

Simon Glass Aug. 19, 2025, 6:58 p.m. UTC
  From: Simon Glass <sjg@chromium.org>

This should say 'switching', so fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---

(no changes since v1)

 arch/arm/lib/bootm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index 12383b2c36e..f15092fcae4 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -156,7 +156,7 @@  static void do_nonsec_virt_switch(void)
 {
 	if (ll_boot_init()) {
 		smp_kick_all_cpus();
-		dcache_disable();	/* flush cache before swtiching to EL2 */
+		dcache_disable();	/* flush cache before switching to EL2 */
 	}
 }
 #endif