diff options
author | njl <njl@FreeBSD.org> | 2003-12-09 03:06:09 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-12-09 03:06:09 +0000 |
commit | 1139fba7a4af1334ea40123aae1bfdf0f5d0ff23 (patch) | |
tree | 0f8da7c0bfc25740cdf6917c375464f3fcabbd8f /sys/contrib | |
parent | 2a9caa496cc3521e5c9352c255b827c90efb3839 (diff) | |
download | FreeBSD-src-1139fba7a4af1334ea40123aae1bfdf0f5d0ff23.zip FreeBSD-src-1139fba7a4af1334ea40123aae1bfdf0f5d0ff23.tar.gz |
Add the APIC_HEADER definition back in and use the correct definition
for local APIC override (64 bits). Changes have been submitted to the
vendor.
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/dev/acpica/actbl.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/actbl.h b/sys/contrib/dev/acpica/actbl.h index cca9c3d..87609d3 100644 --- a/sys/contrib/dev/acpica/actbl.h +++ b/sys/contrib/dev/acpica/actbl.h @@ -242,6 +242,14 @@ typedef struct multiple_apic_table UINT8 Type; \ UINT8 Length; + +typedef struct apic_header /* APIC common table header */ +{ + APIC_HEADER_DEF + +} APIC_HEADER; + + /* Values for MPS INTI flags */ #define POLARITY_CONFORMS 0 @@ -317,7 +325,7 @@ typedef struct madt_address_override { APIC_HEADER_DEF UINT16 Reserved; /* Reserved - must be zero */ - UINT32 Address; /* APIC physical address */ + UINT64 Address; /* APIC physical address */ } MADT_ADDRESS_OVERRIDE; |