diff options
author | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:58:26 +0000 |
---|---|---|
committer | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:58:26 +0000 |
commit | 9a2893fd9d8df874b6c6f109b33c63a1b90c9edc (patch) | |
tree | 074df345858f400b0cd56e59135bac9975b40a46 | |
parent | 8c8cbac3c3c5db374b640e9f9770b76b5078398e (diff) |
Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-13
Creator: Li-Ta Lo <ollie@lanl.gov>
trival test commit
This is my first tla commit
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1931 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/arch/i386/include/arch/acpi.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/arch/i386/include/arch/acpi.h b/src/arch/i386/include/arch/acpi.h index 91cc10c109..6967b6fb9d 100644 --- a/src/arch/i386/include/arch/acpi.h +++ b/src/arch/i386/include/arch/acpi.h @@ -39,14 +39,14 @@ typedef unsigned long long u64; /* ACPI 2.0 table RSDP */ typedef struct acpi_rsdp { - char signature[8]; /* RSDP signature "RSD PTR" */ - u8 checksum; /* checksum of the first 20 bytes */ - char oem_id[6]; /* OEM ID, "LXBIOS" */ - u8 revision; /* 0 for APCI 1.0, 2 for ACPI 2.0 */ - u32 rsdt_address; /* physical address of RSDT */ - u32 length; /* total length of RSDP (including extended part) */ - u64 xsdt_address; /* physical address of XSDT */ - u8 ext_checksum; /* chechsum of whole table */ + char signature[8]; + u8 checksum; + char oem_id[6]; + u8 revision; + u32 rsdt_address; + u32 length; + u64 xsdt_address; + u8 ext_checksum; u8 reserved[3]; } __attribute__((packed)) acpi_rsdp_t; @@ -88,6 +88,7 @@ typedef struct acpi_xsdt { u64 entry[8]; } __attribute__ ((packed)) acpi_xsdt_t; + /* HPET TIMERS */ typedef struct acpi_hpet { struct acpi_table_header header; |