diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-26 20:23:09 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-26 20:23:09 +0000 |
commit | c38e044b0b0544f27656271624f58f2301c12e6d (patch) | |
tree | 179ec85e58b5d9571b6c5cf7996a86b1f56be486 /sys/arch/alpha/pci/cia_pci.c | |
parent | ee2d921ca303adcd8f3ba8e406cf890bfeb83b50 (diff) |
Replace usage of alpha_pci_decompose_tag() with pci_decompose_tag() and
remove alpha_pci_decompose_tag().
From NetBSD
ok martin@
Diffstat (limited to 'sys/arch/alpha/pci/cia_pci.c')
-rw-r--r-- | sys/arch/alpha/pci/cia_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/cia_pci.c b/sys/arch/alpha/pci/cia_pci.c index 56bf3e5e877..540d45ff0b0 100644 --- a/sys/arch/alpha/pci/cia_pci.c +++ b/sys/arch/alpha/pci/cia_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cia_pci.c,v 1.10 2003/10/18 20:14:42 jmc Exp $ */ +/* $OpenBSD: cia_pci.c,v 1.11 2006/03/26 20:23:08 brad Exp $ */ /* $NetBSD: cia_pci.c,v 1.25 2000/06/29 08:58:46 mrg Exp $ */ /* @@ -136,7 +136,7 @@ cia_conf_read(cpv, tag, offset) alpha_pal_draina(); /* secondary if bus # != 0 */ - alpha_pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0); + pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0); if (secondary) { s = splhigh(); old_cfg = REGVAL(CIA_CSR_CFG); @@ -220,7 +220,7 @@ cia_conf_write(cpv, tag, offset, data) #endif /* secondary if bus # != 0 */ - alpha_pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0); + pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0); if (secondary) { s = splhigh(); old_cfg = REGVAL(CIA_CSR_CFG); |