From 6b0007fb77394727d9d5b8f2f75158fe080eb265 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 12 Jun 2011 02:12:07 +0000 Subject: [PATCH] Rename rsdt_length to xsdt_length to avoid future confusion. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42119 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/arch/x86/arch_acpi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/kernel/arch/x86/arch_acpi.h b/headers/private/kernel/arch/x86/arch_acpi.h index da0a07c1c4..0f1592cbf9 100644 --- a/headers/private/kernel/arch/x86/arch_acpi.h +++ b/headers/private/kernel/arch/x86/arch_acpi.h @@ -18,7 +18,7 @@ typedef struct acpi_rsdp { char oem_id[6]; /* not null terminated */ uint8 revision; /* 0 = ACPI 1.0, 2 = ACPI 3.0 */ uint32 rsdt_address; /* physical memory address of RSDT */ - uint32 rsdt_length; /* length in bytes including header */ + uint32 xsdt_length; /* length in bytes including header */ uint64 xsdt_address; /* 64bit physical memory address of XSDT */ uint8 extended_checksum; /* including entire table */ uint8 reserved[3]; @@ -85,7 +85,7 @@ typedef struct acpi_int_source_override { uint8 source; /* Bus-relative interrupt source (IRQ) */ uint32 interrupt; /* global system interrupt this bus-relative source int will signal */ - uint16 flags; /* MPS INTI flags. See Table 5-25 in + uint16 flags; /* MPS INTI flags. See Table 5-25 in ACPI Spec 4.0a or similar */ } _PACKED acpi_int_source_override;