Fix oversight in a previous commit.
This commit is contained in:
parent
375ad27ed8
commit
e234ed15b6
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: apecs.c,v 1.24 1997/09/02 12:51:20 thorpej Exp $ */
|
||||
/* $NetBSD: apecs.c,v 1.25 1997/09/02 12:54:27 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
@ -30,7 +30,7 @@
|
||||
#include <machine/options.h> /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: apecs.c,v 1.24 1997/09/02 12:51:20 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: apecs.c,v 1.25 1997/09/02 12:54:27 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -164,8 +164,8 @@ apecsattach(parent, self, aux)
|
||||
}
|
||||
|
||||
pba.pba_busname = "pci";
|
||||
pba.pba_iot = acp->ac_iot;
|
||||
pba.pba_memt = acp->ac_memt;
|
||||
pba.pba_iot = &acp->ac_iot;
|
||||
pba.pba_memt = &acp->ac_memt;
|
||||
pba.pba_dmat = &acp->ac_dmat_direct;
|
||||
pba.pba_pc = &acp->ac_pc;
|
||||
pba.pba_bus = 0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cia.c,v 1.22 1997/09/02 12:40:19 thorpej Exp $ */
|
||||
/* $NetBSD: cia.c,v 1.23 1997/09/02 12:54:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
@ -30,7 +30,7 @@
|
||||
#include <machine/options.h> /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.22 1997/09/02 12:40:19 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.23 1997/09/02 12:54:28 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -164,8 +164,8 @@ ciaattach(parent, self, aux)
|
||||
}
|
||||
|
||||
pba.pba_busname = "pci";
|
||||
pba.pba_iot = ccp->cc_iot;
|
||||
pba.pba_memt = ccp->cc_memt;
|
||||
pba.pba_iot = &ccp->cc_iot;
|
||||
pba.pba_memt = &ccp->cc_memt;
|
||||
pba.pba_dmat = &ccp->cc_dmat_direct;
|
||||
pba.pba_pc = &ccp->cc_pc;
|
||||
pba.pba_bus = 0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: dwlpx.c,v 1.10 1997/09/02 12:40:20 thorpej Exp $ */
|
||||
/* $NetBSD: dwlpx.c,v 1.11 1997/09/02 12:54:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
@ -33,7 +33,7 @@
|
||||
#include <machine/options.h> /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: dwlpx.c,v 1.10 1997/09/02 12:40:20 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dwlpx.c,v 1.11 1997/09/02 12:54:28 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -177,8 +177,8 @@ dwlpxattach(parent, self, aux)
|
||||
* Attach PCI bus
|
||||
*/
|
||||
pba.pba_busname = "pci";
|
||||
pba.pba_iot = sc->dwlpx_cc.cc_iot;
|
||||
pba.pba_memt = sc->dwlpx_cc.cc_memt;
|
||||
pba.pba_iot = &sc->dwlpx_cc.cc_iot;
|
||||
pba.pba_memt = &sc->dwlpx_cc.cc_memt;
|
||||
pba.pba_dmat = /* start with direct, may change... */
|
||||
alphabus_dma_get_tag(&sc->dwlpx_cc.cc_dmat_direct, ALPHA_BUS_PCI);
|
||||
pba.pba_pc = &sc->dwlpx_cc.cc_pc;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: lca.c,v 1.21 1997/09/02 12:40:21 thorpej Exp $ */
|
||||
/* $NetBSD: lca.c,v 1.22 1997/09/02 12:54:29 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
@ -30,7 +30,7 @@
|
||||
#include <machine/options.h> /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lca.c,v 1.21 1997/09/02 12:40:21 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lca.c,v 1.22 1997/09/02 12:54:29 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -180,8 +180,8 @@ lcaattach(parent, self, aux)
|
||||
}
|
||||
|
||||
pba.pba_busname = "pci";
|
||||
pba.pba_iot = lcp->lc_iot;
|
||||
pba.pba_memt = lcp->lc_memt;
|
||||
pba.pba_iot = &lcp->lc_iot;
|
||||
pba.pba_memt = &lcp->lc_memt;
|
||||
pba.pba_dmat = &lcp->lc_dmat_direct;
|
||||
pba.pba_pc = &lcp->lc_pc;
|
||||
pba.pba_bus = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user