From 6bd3835c8b6e56c38df27fabfb88e3e9b6152489 Mon Sep 17 00:00:00 2001 From: miod Date: Tue, 22 Jul 2008 20:06:01 +0000 Subject: [PATCH] None of the pceb EISA alpha designs has more than 8 physical slots, so don't bother trying to probe more. --- sys/arch/alpha/pci/sio.c | 8 +++++--- 1 file 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 -- 2.20.1