summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
/*