From 1204c1faafbc20e147b5c3b438acaecd2d5e648a Mon Sep 17 00:00:00 2001 From: thorpej Date: Wed, 12 Jul 2000 21:02:14 +0000 Subject: [PATCH] Oops, treat 2100A_A500 just like 2100_A500 in every place necessary. --- sys/arch/alpha/pci/sio.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index fe98250d76b5..3648505360c0 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $NetBSD: sio.c,v 1.31 2000/07/12 20:50:00 thorpej Exp $ */ +/* $NetBSD: sio.c,v 1.32 2000/07/12 21:02:14 thorpej Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -68,7 +68,7 @@ #include /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.31 2000/07/12 20:50:00 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.32 2000/07/12 21:02:14 thorpej Exp $"); #include #include @@ -251,8 +251,9 @@ sio_bridge_callback(self) * Deal with platforms which have Odd ISA DMA needs. */ switch (cputype) { -#ifdef DEC_2100_A500 +#if defined(DEC_2100_A500) || defined(DEC_2100A_A500) case ST_DEC_2100_A500: + case ST_DEC_2100A_A500: sc->sc_ic = sableio_pickisa(); break; #endif @@ -268,8 +269,9 @@ sio_bridge_callback(self) * Deal with platforms that hook up ISA interrupts differently. */ switch (cputype) { -#ifdef DEC_2100_A500 +#if defined(DEC_2100_A500) || defined(DEC_2100A_A500) case ST_DEC_2100_A500: + case ST_DEC_2100A_A500: pci_2100_a500_isa_pickintr(sc->sc_pc, sc->sc_ic); break; #endif