diff options
| author | fvdl <fvdl@NetBSD.org> | 2003-03-04 23:27:32 +0000 |
|---|---|---|
| committer | fvdl <fvdl@NetBSD.org> | 2003-03-04 23:27:32 +0000 |
| commit | 91ef1f21bf2d4e974ebe576cb5c49b31885fa41e (patch) | |
| tree | a5e1bd22a9f16082c2b4c480589bc1493b191317 | |
| parent | c89161c65f55a0ee8969ad13f2bf4d7cf1244cf6 (diff) | |
Make the apic address unsigned, as it should be.
| -rw-r--r-- | sys/arch/x86/include/mpbiosreg.h | 4 |
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 { |
