Fourth pass to include lint changes/comments/cleanup (64-bit)

date	2002.04.11.22.58.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:14:00 +00:00
parent 0bd5ba9d4b
commit b977700600

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: actypes.h - Common data types for the entire ACPI subsystem
* $Revision: 1.229 $
* $Revision: 1.230 $
*
*****************************************************************************/
@ -123,9 +123,6 @@
* Data types - Fixed across all compilation models
*
* BOOLEAN Logical Boolean.
* 1 byte value containing a 0 for FALSE or a 1 for TRUE.
* Other values are undefined.
*
* INT8 8-bit (1 byte) signed value
* UINT8 8-bit (1 byte) unsigned value
* INT16 16-bit (2 byte) signed value
@ -154,6 +151,9 @@ typedef COMPILER_DEPENDENT_UINT64 UINT64;
typedef INT64 NATIVE_INT;
typedef UINT64 NATIVE_UINT;
typedef UINT32 NATIVE_UINT_MAX32;
typedef UINT64 NATIVE_UINT_MIN32;
typedef UINT64 ACPI_TBLPTR;
typedef UINT64 ACPI_IO_ADDRESS;
typedef UINT64 ACPI_PHYSICAL_ADDRESS;
@ -185,6 +185,9 @@ typedef struct
typedef UINT16 NATIVE_UINT;
typedef INT16 NATIVE_INT;
typedef UINT16 NATIVE_UINT_MAX32;
typedef UINT32 NATIVE_UINT_MIN32;
typedef UINT32 ACPI_TBLPTR;
typedef UINT32 ACPI_IO_ADDRESS;
typedef char *ACPI_PHYSICAL_ADDRESS;
@ -217,6 +220,9 @@ typedef COMPILER_DEPENDENT_UINT64 UINT64;
typedef INT32 NATIVE_INT;
typedef UINT32 NATIVE_UINT;
typedef UINT32 NATIVE_UINT_MAX32;
typedef UINT32 NATIVE_UINT_MIN32;
typedef UINT64 ACPI_TBLPTR;
typedef UINT32 ACPI_IO_ADDRESS;
typedef UINT64 ACPI_PHYSICAL_ADDRESS;