diff options
-rw-r--r-- | sys/arch/hppa/hppa/trap.c | 4 | ||||
-rw-r--r-- | sys/arch/hppa/include/frame.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/hppa/trap.c b/sys/arch/hppa/hppa/trap.c index 36a253d8a26..df7da2c7861 100644 --- a/sys/arch/hppa/hppa/trap.c +++ b/sys/arch/hppa/hppa/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.65 2003/04/11 00:25:40 mickey Exp $ */ +/* $OpenBSD: trap.c,v 1.66 2003/06/17 04:39:39 jfb Exp $ */ /* * Copyright (c) 1998-2003 Michael Shalayeff @@ -517,7 +517,7 @@ syscall(struct trapframe *frame) break; /* * this works, because quads get magically swapped - * due to the args being layed backwards on the stack + * due to the args being laid backwards on the stack * and then copied in words */ code = frame->tf_arg0; diff --git a/sys/arch/hppa/include/frame.h b/sys/arch/hppa/include/frame.h index 82b06aa1f71..e66e5183eb4 100644 --- a/sys/arch/hppa/include/frame.h +++ b/sys/arch/hppa/include/frame.h @@ -1,4 +1,4 @@ -/* $OpenBSD: frame.h,v 1.13 2002/03/19 01:30:46 mickey Exp $ */ +/* $OpenBSD: frame.h,v 1.14 2003/06/17 04:39:39 jfb Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -67,7 +67,7 @@ * one is saved while we are in the physical mode (beginning of the trap), * and should be kept as small as possible, since all the interrupts will * be lost during this phase, also it must be 64-bytes aligned, per - * pa-risc stack conventions, and it's dependancies in the code (; + * pa-risc stack conventions, and its dependencies in the code (; * the other part is filled out when we are already in the virtual mode, * are able to catch interrupts (they are kept pending) and perform * other trap activities (like tlb misses). |