diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2026-03-26 13:03:51 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2026-05-27 13:45:26 +0000 |
| commit | fce595344c51850a7113430c77e70c8777383a98 (patch) | |
| tree | 38dd306ed188e99bf79a9a3d71d10c4eed3740d8 | |
| parent | f7524d8fcbd76a432c163200a7c77ce964805beb (diff) | |
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
| -rw-r--r-- | sys/arm64/arm64/swtch.S | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
