diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-03-30 21:43:14 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-03-30 21:43:14 +0000 |
commit | 8df53a55f4bb3649ebde7c0c46641f6234a29d73 (patch) | |
tree | ed3b83f9e34437369fd714b2ca34869bdce2b719 /sys/arch/alpha/pci/apecs.c | |
parent | f2c37aede671db12573faa48cd3045ea0b62fc6a (diff) |
bzero pci attach args
Diffstat (limited to 'sys/arch/alpha/pci/apecs.c')
-rw-r--r-- | sys/arch/alpha/pci/apecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/apecs.c b/sys/arch/alpha/pci/apecs.c index 5c596fb5201..43dc7578570 100644 --- a/sys/arch/alpha/pci/apecs.c +++ b/sys/arch/alpha/pci/apecs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apecs.c,v 1.21 2008/06/26 05:42:08 ray Exp $ */ +/* $OpenBSD: apecs.c,v 1.22 2009/03/30 21:43:13 kettenis Exp $ */ /* $NetBSD: apecs.c,v 1.16 1996/12/05 01:39:34 cgd Exp $ */ /*- @@ -230,6 +230,7 @@ apecsattach(parent, self, aux) panic("apecsattach: shouldn't be here, really..."); } + bzero(&pba, sizeof(pba)); pba.pba_busname = "pci"; pba.pba_iot = &acp->ac_iot; pba.pba_memt = &acp->ac_memt; @@ -238,7 +239,6 @@ apecsattach(parent, self, aux) pba.pba_pc = &acp->ac_pc; pba.pba_domain = pci_ndomains++; pba.pba_bus = 0; - pba.pba_bridgetag = NULL; #ifdef notyet pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED | PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | PCI_FLAGS_MWI_OKAY; |