diff options
author | tegge <tegge@FreeBSD.org> | 1999-10-15 21:38:15 +0000 |
---|---|---|
committer | tegge <tegge@FreeBSD.org> | 1999-10-15 21:38:15 +0000 |
commit | 97a48b4a117e108af55357f4a833450215bae150 (patch) | |
tree | d42a99e4bfcc8a5dbb197844258f4b1968dec210 /sys/kern | |
parent | d3b7d7bf939002ba51d432b8b7319e43cc6237a9 (diff) | |
download | FreeBSD-src-97a48b4a117e108af55357f4a833450215bae150.zip FreeBSD-src-97a48b4a117e108af55357f4a833450215bae150.tar.gz |
Eliminate remaining part of incorrect PCI bus numbering sanity check on systems with more than one PCI bus.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_smp.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index dec05e2..d101973 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -1046,13 +1046,6 @@ fix_mp_table(void) } } } - /* sanity check if more than 1 PCI bus */ - else if (num_pci_bus > 1) { - for (x = 0; x < mp_nbusses; ++x) { - if (bus_data[x].bus_type != PCI) - continue; - } - } } |