From b8493884df6cb5fa3c17570b286459385c17ebe1 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 18 Oct 2000 09:55:39 +0000 Subject: [PATCH] Go ahead and disable the legacy mapping of the pcic registers on the RF5C47x. Before the code would only do this on the RF5C46x bridges. Submitted by: Jonathan Chen --- sys/dev/pccbb/pccbb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c index 8f9e7ed5901..35e35cf0662 100644 --- a/sys/dev/pccbb/pccbb.c +++ b/sys/dev/pccbb/pccbb.c @@ -307,9 +307,9 @@ pccbb_chipinit(struct pccbb_softc* sc) | PCIM_CMD_BUSMASTEREN, 2); /* disable Legacy IO */ - switch (sc->sc_chipset) { case CB_RF5C46X: + case CB_RF5C47X: PCI_MASK_CONFIG(sc->sc_dev, PCCBBR_BRIDGECTRL, & ~(PCCBBM_BRIDGECTRL_RL_3E0_EN| PCCBBM_BRIDGECTRL_RL_3E2_EN), 2);