Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 May 2026 14:59:26 +0000
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: fce595344c51 - main - arm64 locore: Fix a comment typo: Of -> If
Message-ID:  <6a1706ce.2247f.79a08f14@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=fce595344c51850a7113430c77e70c8777383a98

commit fce595344c51850a7113430c77e70c8777383a98
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2026-03-26 13:03:51 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2026-05-27 13:45:26 +0000

    arm64 locore: Fix a comment typo: Of -> If
    
    Reviewed by:    kib, andrew
    Sponsored by:   AFRL, DARPA
    Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/23
---
 sys/arm64/arm64/swtch.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm64/arm64/swtch.S b/sys/arm64/arm64/swtch.S
index 0cc0d7462ae6..af2c278baecf 100644
--- a/sys/arm64/arm64/swtch.S
+++ b/sys/arm64/arm64/swtch.S
@@ -75,7 +75,7 @@
  * void cpu_throw(struct thread *old, struct thread *new)
  */
 ENTRY(cpu_throw)
-	/* Of old == NULL skip disabling stepping */
+	/* If old == NULL skip disabling stepping */
 	cbz	x0, 1f
 
 	/* If we were single stepping, disable it */


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a1706ce.2247f.79a08f14>