summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorfvdl <fvdl@NetBSD.org>2003-03-04 23:20:29 +0000
committerfvdl <fvdl@NetBSD.org>2003-03-04 23:20:29 +0000
commite575c4bc69d4957ca9f8348fa41875c299b7eba9 (patch)
tree9f92535a9ad5bd632837d2dc6b62c84da47813d1 /sys
parent48aa516ffe755223f5eaaa1fa4fe4dc8b18afd9b (diff)
Fix some fields that did not have explicit types yet.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/x86/include/mpbiosreg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/x86/include/mpbiosreg.h b/sys/arch/x86/include/mpbiosreg.h
index cf6366aa50f..e9e866e9a64 100644
--- a/sys/arch/x86/include/mpbiosreg.h
+++ b/sys/arch/x86/include/mpbiosreg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: mpbiosreg.h,v 1.1 2003/02/26 21:26:10 fvdl Exp $ */
+/* $NetBSD: mpbiosreg.h,v 1.2 2003/03/04 23:20:29 fvdl Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -101,10 +101,10 @@ struct mpbios_proc {
u_int8_t cpu_flags;
#define PROCENTRY_FLAG_EN 0x01
#define PROCENTRY_FLAG_BP 0x02
- u_long cpu_signature;
- u_long feature_flags;
- u_long reserved1;
- u_long reserved2;
+ u_int32_t cpu_signature;
+ u_int32_t feature_flags;
+ u_int32_t reserved1;
+ u_int32_t reserved2;
};
struct mpbios_bus {
@@ -119,7 +119,7 @@ struct mpbios_ioapic {
u_int8_t apic_version;
u_int8_t apic_flags;
#define IOAPICENTRY_FLAG_EN 0x01
- void *apic_address;
+ int32_t apic_address;
};
struct mpbios_int {