From ef0f557c659b0a59bc800a1a9935c4d729487248 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Sat, 23 Jan 2010 16:40:36 +0000 Subject: [PATCH] As suggested by Axel use addr_t and size_t. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35267 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/drivers/ACPI.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/headers/os/drivers/ACPI.h b/headers/os/drivers/ACPI.h index 2c25fb3fca..ace0d72938 100644 --- a/headers/os/drivers/ACPI.h +++ b/headers/os/drivers/ACPI.h @@ -15,15 +15,9 @@ typedef struct acpi_object_type acpi_object_type; #define B_ACPI_MODULE_NAME "bus_managers/acpi/v1" -#ifdef B_HAIKU_64_BIT -typedef uint64 acpi_physical_address; -typedef uint64 acpi_io_address; -typedef uint64 acpi_size; -#else -typedef uint32 acpi_physical_address; -typedef uint32 acpi_io_address; -typedef uint32 acpi_size; -#endif +typedef addr_t acpi_physical_address; +typedef addr_t acpi_io_address; +typedef size_t acpi_size; /* Actually a ptr to a NS Node */ typedef void * acpi_handle;