cia_bus_ -> cia_swiz_bus_

This commit is contained in:
thorpej 1997-09-02 20:07:20 +00:00
parent 80e3db443f
commit 991f4ebc72
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cia.c,v 1.25 1997/09/02 13:24:48 thorpej Exp $ */
/* $NetBSD: cia.c,v 1.26 1997/09/02 20:07:20 thorpej Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.25 1997/09/02 13:24:48 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.26 1997/09/02 20:07:20 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -107,8 +107,8 @@ cia_init(ccp, mallocsafe)
if (!ccp->cc_initted) {
/* don't do these twice since they set up extents */
cia_bus_io_init(&ccp->cc_iot, ccp);
cia_bus_mem_init(&ccp->cc_memt, ccp);
cia_swiz_bus_io_init(&ccp->cc_iot, ccp);
cia_swiz_bus_mem_init(&ccp->cc_memt, ccp);
}
ccp->cc_mallocsafe = mallocsafe;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ciavar.h,v 1.9 1997/09/02 12:40:20 thorpej Exp $ */
/* $NetBSD: ciavar.h,v 1.10 1997/09/02 20:07:21 thorpej Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -65,5 +65,5 @@ void cia_init __P((struct cia_config *, int));
void cia_pci_init __P((pci_chipset_tag_t, void *));
void cia_dma_init __P((struct cia_config *));
void cia_bus_io_init __P((bus_space_tag_t, void *));
void cia_bus_mem_init __P((bus_space_tag_t, void *));
void cia_swiz_bus_io_init __P((bus_space_tag_t, void *));
void cia_swiz_bus_mem_init __P((bus_space_tag_t, void *));