diff options
author | Takuya ASADA <syuu@cvs.openbsd.org> | 2010-09-09 10:55:53 +0000 |
---|---|---|
committer | Takuya ASADA <syuu@cvs.openbsd.org> | 2010-09-09 10:55:53 +0000 |
commit | 118a891f9090dbe48da2926bf6c68fee292f884e (patch) | |
tree | a822049138cc698349cc2b7ae254d283b975fcbd /sys/arch | |
parent | e95a6f7d7cd8a1e25672a23ea1aae0884e77bb23 (diff) |
Fix compile error on option DEBUG ok miod@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mips64/mips64/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/cpu.c b/sys/arch/mips64/mips64/cpu.c index 82f6431835e..8941e28797b 100644 --- a/sys/arch/mips64/mips64/cpu.c +++ b/sys/arch/mips64/mips64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.32 2010/08/30 08:52:10 syuu Exp $ */ +/* $OpenBSD: cpu.c,v 1.33 2010/09/09 10:55:52 syuu Exp $ */ /* * Copyright (c) 1997-2004 Opsycon AB (www.opsycon.se) @@ -287,7 +287,7 @@ cpuattach(struct device *parent, struct device *dev, void *aux) #ifdef DEBUG printf("cpu%d: Setsize %d:%d\n", cpuno, - ci->ci_l1instset, ci->ci_l1dataset); + ci->ci_l1instcacheset, ci->ci_l1datacacheset); printf("cpu%d: Alias mask %p\n", cpuno, CpuCacheAliasMask); printf("cpu%d: Config Register %08x\n", cpuno, cp0_get_config()); printf("cpu%d: Cache configuration %x\n", |