diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-11-09 00:32:04 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-11-09 00:32:04 +0000 |
commit | 56e895f421d41b7e319dd800b023712df1160213 (patch) | |
tree | d02ed17e27a568fef9c9f0cd0d6425a6f5a3c2a7 /sys | |
parent | 813dcba5d75c94ce75a82c86aa8f5bc63bb44042 (diff) |
Typos; Jonathan Gray
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/dev/vx.c | 10 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/vxreg.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/include/board.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/include/cmmu.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/include/cpu.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 8 |
6 files changed, 17 insertions, 17 deletions
diff --git a/sys/arch/mvme88k/dev/vx.c b/sys/arch/mvme88k/dev/vx.c index 4924a266fe8..6f5d20ff0b1 100644 --- a/sys/arch/mvme88k/dev/vx.c +++ b/sys/arch/mvme88k/dev/vx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vx.c,v 1.23 2003/10/05 20:27:48 miod Exp $ */ +/* $OpenBSD: vx.c,v 1.24 2003/11/09 00:31:59 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * All rights reserved. @@ -1166,9 +1166,9 @@ vx_intr(arg) vx_event(sc, &pkt); return 1; break; - case CMD_PROCCESED: + case CMD_PROCESSED: #ifdef DEBUG_VXT - printf("CMD_PROCCESED Packet\n"); + printf("CMD_PROCESSED Packet\n"); #endif return 1; break; @@ -1397,7 +1397,7 @@ put_free_packet(sc, pp) { struct packet *pktp = (struct packet *)pp; /*bzero(pktp, sizeof(struct packet));*/ - pktp->command = CMD_PROCCESED; + pktp->command = CMD_PROCESSED; sc->plist_tail->link = (u_long)pktp; pktp->link = NULL; sc->plist_tail = pktp; @@ -1601,7 +1601,7 @@ bpp_send(struct vxsoftc *sc, void *pkt, int wait_flag) sc->vx_reg->ipc_cr |= IPC_CR_ATTEN; if (wait_flag) { /* wait for a packet to return */ - while (pktp->command != CMD_PROCCESED) { + while (pktp->command != CMD_PROCESSED) { #ifdef DEBUG_VXT printf("Polling for packet 0x%x in envelope 0x%x...\n", pktp, envp); #endif diff --git a/sys/arch/mvme88k/dev/vxreg.h b/sys/arch/mvme88k/dev/vxreg.h index 1f60b239521..5237afe4c1d 100644 --- a/sys/arch/mvme88k/dev/vxreg.h +++ b/sys/arch/mvme88k/dev/vxreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vxreg.h,v 1.3 2003/10/11 22:08:57 miod Exp $ */ +/* $OpenBSD: vxreg.h,v 1.4 2003/11/09 00:31:59 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. All rights reserved. @@ -76,7 +76,7 @@ struct vxreg { #define CMD_IOCTL 0x0004 #define CMD_CLOSE 0x0005 #define CMD_EVENT 0x0006 -#define CMD_PROCCESED 0x00FF +#define CMD_PROCESSED 0x00FF #define IOCTL_LDOPEN 0x4400 #define IOCTL_LDCLOSE 0x4401 diff --git a/sys/arch/mvme88k/include/board.h b/sys/arch/mvme88k/include/board.h index d30f9dc63ba..78ffb9b94f1 100644 --- a/sys/arch/mvme88k/include/board.h +++ b/sys/arch/mvme88k/include/board.h @@ -1,4 +1,4 @@ -/* $OpenBSD: board.h,v 1.18 2003/10/11 22:08:57 miod Exp $ */ +/* $OpenBSD: board.h,v 1.19 2003/11/09 00:32:00 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * All rights reserved. @@ -92,7 +92,7 @@ #define FPUP_BIT 0x400 /* FPU precise exception */ #define FPUI_BIT 0x800 /* FPU imprecise exception */ -/* machine dependant definitions */ +/* machine dependent definitions */ #if defined(MVME187) || defined(MVME197) #include <machine/mvme1x7.h> diff --git a/sys/arch/mvme88k/include/cmmu.h b/sys/arch/mvme88k/include/cmmu.h index ab00a3482c5..8fcb2a89e2b 100644 --- a/sys/arch/mvme88k/include/cmmu.h +++ b/sys/arch/mvme88k/include/cmmu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmmu.h,v 1.14 2003/10/05 20:35:22 miod Exp $ */ +/* $OpenBSD: cmmu.h,v 1.15 2003/11/09 00:32:00 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1992 Carnegie Mellon University @@ -51,7 +51,7 @@ extern struct simplelock cmmu_cpu_lock; #define CMMU_LOCK simple_lock(&cmmu_cpu_lock) #define CMMU_UNLOCK simple_unlock(&cmmu_cpu_lock) -/* machine dependant cmmu function pointer structure */ +/* machine dependent cmmu function pointer structure */ struct cmmu_p { void (*cmmu_init_func)(void); void (*setup_board_config_func)(void); diff --git a/sys/arch/mvme88k/include/cpu.h b/sys/arch/mvme88k/include/cpu.h index f05cf538b5a..8ead0a53482 100644 --- a/sys/arch/mvme88k/include/cpu.h +++ b/sys/arch/mvme88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.22 2003/10/05 20:27:46 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.23 2003/11/09 00:32:00 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -177,7 +177,7 @@ struct switchframe { void *sf_proc; /* proc pointer */ }; -/* This struct defines the machine dependant pointers */ +/* This struct defines the machine dependent pointers */ struct md_p { void (*clock_init_func)(void); /* interval clock init function */ void (*statclock_init_func)(void); /* statistics clock init function */ diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index dfb450af84e..b3562729ddb 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.119 2003/11/06 21:09:35 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.120 2003/11/09 00:32:03 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -115,7 +115,7 @@ struct intrhand *intr_handlers[256]; vaddr_t interrupt_stack[MAX_CPUS]; -/* machine dependant function pointers. */ +/* machine dependent function pointers. */ struct md_p md; /* prototypes */ @@ -514,7 +514,7 @@ cpu_startup() panic("uarea_pages %x: UADDR not free", uarea_pages); /* - * Grab machine dependant memory spaces + * Grab machine dependent memory spaces */ switch (brdtyp) { #ifdef MVME187 @@ -2315,7 +2315,7 @@ mvme_bootstrap() curproc = &proc0; curpcb = &proc0paddr->u_pcb; - /* zero out the machine dependant function pointers */ + /* zero out the machine dependent function pointers */ bzero(&md, sizeof(struct md_p)); buginit(); /* init the bug routines */ |