diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-04-11 00:45:10 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-04-11 00:45:10 +0000 |
commit | 32110f5917b46b67233f9faa81302b57c38dc68d (patch) | |
tree | 8fc0cc7429f47609a9f24c9adeb151067f552ddd /sys/arch/powerpc64 | |
parent | 3430d1a7ed898bbc52c200db6907c3deedd91aec (diff) |
fix double words in comments
feedback and ok jmc@ miod, ok millert@
Diffstat (limited to 'sys/arch/powerpc64')
-rw-r--r-- | sys/arch/powerpc64/powerpc64/trap.c | 4 | ||||
-rw-r--r-- | sys/arch/powerpc64/powerpc64/vm_machdep.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/powerpc64/powerpc64/trap.c b/sys/arch/powerpc64/powerpc64/trap.c index f8e09702b58..a4a386c6d8e 100644 --- a/sys/arch/powerpc64/powerpc64/trap.c +++ b/sys/arch/powerpc64/powerpc64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.52 2023/01/02 23:03:18 kettenis Exp $ */ +/* $OpenBSD: trap.c,v 1.53 2023/04/11 00:45:08 jsg Exp $ */ /* * Copyright (c) 2020 Mark Kettenis <kettenis@openbsd.org> @@ -234,7 +234,7 @@ trap(struct trapframe *frame) * insert a new SLB entry. Executing the faulting * instruction again should result in a Data Storage * Interrupt that does indicate whether we're dealing - * with with a read or a write fault. + * with a read or a write fault. */ map = &p->p_vmspace->vm_map; vm_map_lock_read(map); diff --git a/sys/arch/powerpc64/powerpc64/vm_machdep.c b/sys/arch/powerpc64/powerpc64/vm_machdep.c index 42a29ab55f8..522d63cfaca 100644 --- a/sys/arch/powerpc64/powerpc64/vm_machdep.c +++ b/sys/arch/powerpc64/powerpc64/vm_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_machdep.c,v 1.8 2021/05/16 06:20:29 jsg Exp $ */ +/* $OpenBSD: vm_machdep.c,v 1.9 2023/04/11 00:45:08 jsg Exp $ */ /*- * Copyright (c) 1995 Charles M. Hannum. All rights reserved. @@ -158,7 +158,7 @@ vmapbuf(struct buf *bp, vsize_t len) * the pmap_extract(). * * no need to flush TLB since we expect nothing to be mapped - * where we we just allocated (TLB will be flushed when our + * where we just allocated (TLB will be flushed when our * mapping is removed). */ while (len) { |