From 91ef1f21bf2d4e974ebe576cb5c49b31885fa41e Mon Sep 17 00:00:00 2001 From: fvdl Date: Tue, 4 Mar 2003 23:27:32 +0000 Subject: Make the apic address unsigned, as it should be. --- sys/arch/x86/include/mpbiosreg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys') 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 { -- cgit