summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallatin <gallatin@FreeBSD.org>2000-01-20 16:49:18 +0000
committerAndrew Gallatin <gallatin@FreeBSD.org>2000-01-20 16:49:18 +0000
commite1364adbae6ce7dc206b5544cbea37b5ddea394f (patch)
treed04b5eb79e97b70b4657c4f37108831b833359dd
parent2945c302daefa047d645941bbb1185d51a713f0d (diff)
Notes
-rw-r--r--sys/alpha/pci/tsunami_pci.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/alpha/pci/tsunami_pci.c b/sys/alpha/pci/tsunami_pci.c
index c5301d1c4c7d..5372420c44f2 100644
--- a/sys/alpha/pci/tsunami_pci.c
+++ b/sys/alpha/pci/tsunami_pci.c
@@ -78,15 +78,7 @@ tsunami_bus_within_hose(int hose, int bus)
if (hose == bus)
return 0;
else
- return ( (bus - tsunami_hoses[hose])
- + (tsunami_num_pchips - 1)); /* XXX */
- /*
- * XXX (tsunami_num_pchips - 1) is a just a guess!
- *
- * I assume that a ppb in a ds10 will get bus 1
- * if it is assigned bus 2, then replace
- * (tsunami_num_pchips - 1) with 1.
- */
+ return ( (bus - tsunami_hoses[hose]) + 1);
}
/*