summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2009-10-22 20:05:29 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2009-10-22 20:05:29 +0000
commita81feba34f8a90600807b2131fe19f958f163e15 (patch)
tree14ab513274bfa4aa22baace7bcc271755854f2d2 /sys/arch/mips64/include
parent5c891a01c345a36982404a82bee072e829efce60 (diff)
Replace intrmask_t with uint32_t. This types only describes interrupt masks
in the coprocessor 0 status register (coupled with ICR on rm7k/rm9k), and may be completely alien to real hardware interrupt masks, so don't make things unnecessary confusing.
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r--sys/arch/mips64/include/cpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h
index 119c34483f7..119b428aa1d 100644
--- a/sys/arch/mips64/include/cpu.h
+++ b/sys/arch/mips64/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.38 2009/10/07 08:35:47 syuu Exp $ */
+/* $OpenBSD: cpu.h,v 1.39 2009/10/22 20:05:26 miod Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -373,9 +373,9 @@ struct cpu_info {
ci_schedstate;
int ci_want_resched; /* need_resched() invoked */
cpuid_t ci_cpuid; /* our CPU ID */
- u_int32_t ci_randseed; /* per cpu random seed */
- intrmask_t ci_cpl;
- intrmask_t ci_ipending;
+ uint32_t ci_randseed; /* per cpu random seed */
+ uint32_t ci_cpl;
+ uint32_t ci_ipending;
#ifdef MULTIPROCESSOR
u_long ci_flags; /* flags; see below */
#endif