summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_ti.c
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2001-04-26 16:40:45 +0000
committerwpaul <wpaul@FreeBSD.org>2001-04-26 16:40:45 +0000
commit5bf6685581ffa2102f905c5a2209043ad1c674a6 (patch)
treef743d70f2a1305b67518c04a5b05b2a0b7698db9 /sys/pci/if_ti.c
parent13359ffde1a374fd4e0ebc4ede68285dd8b7815b (diff)
downloadFreeBSD-src-5bf6685581ffa2102f905c5a2209043ad1c674a6.zip
FreeBSD-src-5bf6685581ffa2102f905c5a2209043ad1c674a6.tar.gz
Fix the definitions for memory bank sizes, which I somehow got wrong.
The constant I was using was correct, but I mislabeled it as 256K when it should have been 512K. This doesn't actually change the code, but it clarifies things somewhat. Submitted by: Chuck Cranor <chuck@research.att.com>
Diffstat (limited to 'sys/pci/if_ti.c')
-rw-r--r--sys/pci/if_ti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c
index a25c2f2..4db8b7d 100644
--- a/sys/pci/if_ti.c
+++ b/sys/pci/if_ti.c
@@ -1173,7 +1173,7 @@ static int ti_chipinit(sc)
/* Do special setup for Tigon 2. */
if (sc->ti_hwrev == TI_HWREV_TIGON_II) {
TI_SETBIT(sc, TI_CPU_CTL_B, TI_CPUSTATE_HALT);
- TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_SRAM_BANK_256K);
+ TI_SETBIT(sc, TI_MISC_LOCAL_CTL, TI_MLC_SRAM_BANK_512K);
TI_SETBIT(sc, TI_MISC_CONF, TI_MCR_SRAM_SYNCHRONOUS);
}
OpenPOWER on IntegriCloud