Module Name:    src
Committed By:   skrll
Date:           Sun Oct 10 08:59:45 UTC 2021

Modified Files:
        src/sys/arch/aarch64/aarch64: idle_machdep.S

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/aarch64/aarch64/idle_machdep.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/aarch64/aarch64/idle_machdep.S
diff -u src/sys/arch/aarch64/aarch64/idle_machdep.S:1.10 src/sys/arch/aarch64/aarch64/idle_machdep.S:1.11
--- src/sys/arch/aarch64/aarch64/idle_machdep.S:1.10	Mon Aug 30 22:28:50 2021
+++ src/sys/arch/aarch64/aarch64/idle_machdep.S	Sun Oct 10 08:59:45 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: idle_machdep.S,v 1.10 2021/08/30 22:28:50 jmcneill Exp $ */
+/* $NetBSD: idle_machdep.S,v 1.11 2021/10/10 08:59:45 skrll Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #include <aarch64/locore.h>
 #include "assym.h"
 
-RCSID("$NetBSD: idle_machdep.S,v 1.10 2021/08/30 22:28:50 jmcneill Exp $");
+RCSID("$NetBSD: idle_machdep.S,v 1.11 2021/10/10 08:59:45 skrll Exp $");
 
 #ifdef ARM_INTR_IMPL
 #include ARM_INTR_IMPL
@@ -55,7 +55,7 @@ ENTRY(cpu_idle)
 	/*
 	 * hardware interrupt -> trap handler -> interrupt handler
 	 */
-	dsb sy
+	dsb	sy
 	wfi
 
 #else /* LAZY_CPUIDLE */
@@ -94,7 +94,7 @@ ENTRY(cpu_idle)
 	 */
 	str	w2, [x28, #CI_INTR_DEPTH]	/* ci->ci_intr_depth = 1 */
 
-	dsb sy
+	dsb	sy
 	wfi
 	bl	ARM_IRQ_HANDLER			/* irqhandler(trapframe) */
 1:

Reply via email to