summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorfvdl <fvdl@NetBSD.org>2003-03-04 23:27:32 +0000
committerfvdl <fvdl@NetBSD.org>2003-03-04 23:27:32 +0000
commit91ef1f21bf2d4e974ebe576cb5c49b31885fa41e (patch)
treea5e1bd22a9f16082c2b4c480589bc1493b191317 /sys
parentc89161c65f55a0ee8969ad13f2bf4d7cf1244cf6 (diff)
Make the apic address unsigned, as it should be.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/x86/include/mpbiosreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/x86/include/mpbiosreg.h b/sys/arch/x86/include/mpbiosreg.h
index e9e866e9a64..6976897d7d7 100644
--- a/sys/arch/x86/include/mpbiosreg.h
+++ b/sys/arch/x86/include/mpbiosreg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: mpbiosreg.h,v 1.2 2003/03/04 23:20:29 fvdl Exp $ */
+/* $NetBSD: mpbiosreg.h,v 1.3 2003/03/04 23:27:32 fvdl Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -119,7 +119,7 @@ struct mpbios_ioapic {
u_int8_t apic_version;
u_int8_t apic_flags;
#define IOAPICENTRY_FLAG_EN 0x01
- int32_t apic_address;
+ u_int32_t apic_address;
};
struct mpbios_int {