From fbf6f924d38f7af893486c1d3fccdcc3887323ea Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Fri, 6 May 2011 04:28:39 +0000 Subject: [PATCH] * The integer type is actually 64bit, probably just a typo (from very long ago). * Some automatic whitespace cleanup. This makes the interrupt model change via kernel actually work. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41340 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/drivers/ACPI.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/os/drivers/ACPI.h b/headers/os/drivers/ACPI.h index 91860b3c96..8765136c5a 100644 --- a/headers/os/drivers/ACPI.h +++ b/headers/os/drivers/ACPI.h @@ -32,7 +32,7 @@ typedef void * acpi_handle; #define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3 #define ACPI_MAX_SYS_NOTIFY 0x7f - + /* Address Space (Operation Region) Types */ enum { @@ -86,7 +86,7 @@ enum { struct acpi_object_type { uint32 object_type; union { - uint32 integer; + uint64 integer; struct { uint32 len; char *string; /* You have to allocate string space yourself */ @@ -137,7 +137,7 @@ enum { /* * acpi_status should return ACPI specific error codes, not BeOS ones. - */ + */ typedef uint32 acpi_status; #endif // __ACTYPES_H__