diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-07-22 20:06:02 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-07-22 20:06:02 +0000 |
commit | c86be79819f551791b84aa53f23e58dce12298c6 (patch) | |
tree | 6bc78feb5b8446a29b30ba74607de4fa61524493 /sys/arch/alpha/pci | |
parent | b1f45deaa5e3d4960b8e282263f6f1e4247c1f41 (diff) |
None of the pceb EISA alpha designs has more than 8 physical slots, so don't
bother trying to probe more.
Diffstat (limited to 'sys/arch/alpha/pci')
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index f1d0bd9ace4..34ff03f8399 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.32 2008/07/19 18:13:06 miod Exp $ */ +/* $OpenBSD: sio.c,v 1.33 2008/07/22 20:06:01 miod Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -234,8 +234,10 @@ int sio_eisa_maxslots(v) void *v; { - - return 16; /* as good a number as any. only 8, maybe? */ + /* + * None of the alpha backplanes has more than 8 physical slots. + */ + return 9; } int |