Correct a few comment typos that have propagated through the

tree.
This commit is contained in:
rumble 2004-09-16 03:57:10 +00:00
parent 2fa09966de
commit b1a9752c01
9 changed files with 36 additions and 36 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus.c,v 1.17 2003/07/15 01:29:22 lukem Exp $ */
/* $NetBSD: bus.c,v 1.18 2004/09/16 03:57:10 rumble Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.17 2003/07/15 01:29:22 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.18 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -157,12 +157,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.20 2003/07/15 02:29:31 lukem Exp $ */
/* $NetBSD: bus_dma.c,v 1.21 2004/09/16 03:57:10 rumble Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.20 2003/07/15 02:29:31 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.21 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -94,12 +94,12 @@ _hpcmips_bd_map_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* has two variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*/
mapsize = sizeof(struct bus_dmamap_hpcmips) +

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.10 2004/05/16 15:44:10 wiz Exp $ */
/* $NetBSD: bus_dma.c,v 1.11 2004/09/16 03:57:10 rumble Exp $ */
/*
* This file was taken from from alpha/common/bus_dma.c
@ -46,7 +46,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.10 2004/05/16 15:44:10 wiz Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.11 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -87,12 +87,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.24 2004/05/16 15:44:10 wiz Exp $ */
/* $NetBSD: bus_dma.c,v 1.25 2004/09/16 03:57:10 rumble Exp $ */
/*
* This file was taken from from next68k/dev/bus_dma.c, which was originally
@ -46,7 +46,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.24 2004/05/16 15:44:10 wiz Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.25 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -90,12 +90,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus.c,v 1.15 2003/07/15 02:59:30 lukem Exp $ */
/* $NetBSD: bus.c,v 1.16 2004/09/16 03:57:10 rumble Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.15 2003/07/15 02:59:30 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.16 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -169,12 +169,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.7 2003/07/15 02:54:37 lukem Exp $ */
/* $NetBSD: bus_dma.c,v 1.8 2004/09/16 03:57:10 rumble Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.7 2003/07/15 02:54:37 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.8 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/malloc.h>
@ -87,12 +87,12 @@ _bus_dmamap_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.38 2003/07/15 02:54:40 lukem Exp $ */
/* $NetBSD: bus_dma.c,v 1.39 2004/09/16 03:57:10 rumble Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.38 2003/07/15 02:54:40 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.39 2004/09/16 03:57:10 rumble Exp $");
#include "opt_cputype.h"
@ -111,12 +111,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus.c,v 1.30 2004/04/13 08:12:03 sekiya Exp $ */
/* $NetBSD: bus.c,v 1.31 2004/09/16 03:57:10 rumble Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.30 2004/04/13 08:12:03 sekiya Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.31 2004/09/16 03:57:10 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -403,12 +403,12 @@ _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.11 2004/05/16 15:44:10 wiz Exp $ */
/* $NetBSD: bus_dma.c,v 1.12 2004/09/16 03:57:11 rumble Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -39,7 +39,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.11 2004/05/16 15:44:10 wiz Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.12 2004/09/16 03:57:11 rumble Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -117,12 +117,12 @@ _bus_dmamap_create(void *cookie, bus_size_t size, int nsegments,
size_t mapsize;
/*
* Allcoate and initialize the DMA map. The end of the map
* Allocate and initialize the DMA map. The end of the map
* is a variable-sized array of segments, so we allocate enough
* room for them in one shot.
*
* Note we don't preserve the WAITOK or NOWAIT flags. Preservation
* of ALLOCNOW notifes others that we've reserved these resources,
* of ALLOCNOW notifies others that we've reserved these resources,
* and they are not to be freed.
*
* The bus_dmamap_t includes one bus_dma_segment_t, hence