* 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
This commit is contained in:
Michael Lotz
2011-05-06 04:28:39 +00:00
parent 218aaf536f
commit fbf6f924d3
+3 -3
View File
@@ -32,7 +32,7 @@ typedef void * acpi_handle;
#define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3 #define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3
#define ACPI_MAX_SYS_NOTIFY 0x7f #define ACPI_MAX_SYS_NOTIFY 0x7f
/* Address Space (Operation Region) Types */ /* Address Space (Operation Region) Types */
enum { enum {
@@ -86,7 +86,7 @@ enum {
struct acpi_object_type { struct acpi_object_type {
uint32 object_type; uint32 object_type;
union { union {
uint32 integer; uint64 integer;
struct { struct {
uint32 len; uint32 len;
char *string; /* You have to allocate string space yourself */ 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. * acpi_status should return ACPI specific error codes, not BeOS ones.
*/ */
typedef uint32 acpi_status; typedef uint32 acpi_status;
#endif // __ACTYPES_H__ #endif // __ACTYPES_H__