diff options
author | Yinghai Lu <yinghai.lu at amd.com> | 2007-04-06 19:59:11 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-04-06 19:59:11 +0000 |
commit | c29b546eb128439ccbbfa4d99ea9f118793042ac (patch) | |
tree | a550e10e572f465bc00b73a2beb474a896b7a8fc /src | |
parent | 30b4abeedc98db5a607f434af67e2fe2626ef111 (diff) |
Part IV
Signed-off-by: Yinghai Lu <yinghai.lu at amd.com>
Signed-off-by: Ed Swierk <eswierk at arastra.com>
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ward Vandewege <ward at gnu.org>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2591 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/i386/include/arch/acpi.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/arch/i386/include/arch/acpi.h b/src/arch/i386/include/arch/acpi.h index 333057b13b..e4e2a56c55 100644 --- a/src/arch/i386/include/arch/acpi.h +++ b/src/arch/i386/include/arch/acpi.h @@ -17,9 +17,6 @@ #if HAVE_ACPI_TABLES==1 -typedef unsigned char u8; -typedef unsigned short u16; -typedef unsigned int u32; typedef unsigned long long u64; #define RSDP_SIG "RSD PTR " /* RSDT Pointer signature */ @@ -83,7 +80,7 @@ typedef struct acpi_table_header /* ACPI common table header */ /* RSDT */ typedef struct acpi_rsdt { struct acpi_table_header header; - u32 entry[6+ACPI_SSDTX_NUM]; /* HPET, FADT, SRAT, SLIT, MADT(APIC), SSDT, SSDTX*/ + u32 entry[6+ACPI_SSDTX_NUM+CONFIG_MAX_CPUS]; /* HPET, FADT, SRAT, SLIT, MADT(APIC), SSDT, SSDTX, and SSDT for CPU pstate*/ } __attribute__ ((packed)) acpi_rsdt_t; /* XSDT */ |