From 991f4ebc720177a1da8a104a03d8a34ab697ef8e Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 2 Sep 1997 20:07:20 +0000 Subject: [PATCH] cia_bus_ -> cia_swiz_bus_ --- sys/arch/alpha/pci/cia.c | 8 ++++---- sys/arch/alpha/pci/ciavar.h | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sys/arch/alpha/pci/cia.c b/sys/arch/alpha/pci/cia.c index 428f8a4526ef..198900b184a7 100644 --- a/sys/arch/alpha/pci/cia.c +++ b/sys/arch/alpha/pci/cia.c @@ -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 /* 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 #include @@ -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; diff --git a/sys/arch/alpha/pci/ciavar.h b/sys/arch/alpha/pci/ciavar.h index 9765d03571d4..4f634634004a 100644 --- a/sys/arch/alpha/pci/ciavar.h +++ b/sys/arch/alpha/pci/ciavar.h @@ -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 *));