Disable redundant typedefs that we already got from the inclusion of ntddk.h from elsewhere (and it was done like that in our old modifications of ACPICA).
Personally I don't like this way to go, but for the moment just apply something that (seemed to) worked before...

Part 2 of our modifications to ACPICA code.
CORE-8044

svn path=/trunk/; revision=62606
This commit is contained in:
Hermès Bélusca-Maïto 2014-04-03 22:09:20 +00:00
parent 7ffce2077e
commit ba1329cf88

View file

@ -196,11 +196,11 @@
*
******************************************************************************/
typedef unsigned char BOOLEAN;
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef COMPILER_DEPENDENT_UINT64 UINT64;
typedef COMPILER_DEPENDENT_INT64 INT64;
// typedef unsigned char BOOLEAN;
// typedef unsigned char UINT8;
// typedef unsigned short UINT16;
// typedef COMPILER_DEPENDENT_UINT64 UINT64;
// typedef COMPILER_DEPENDENT_INT64 INT64;
/*! [End] no source code translation !*/
@ -225,8 +225,8 @@ typedef COMPILER_DEPENDENT_INT64 INT64;
/*! [Begin] no source code translation (keep the typedefs as-is) */
typedef unsigned int UINT32;
typedef int INT32;
// typedef unsigned int UINT32;
// typedef int INT32;
/*! [End] no source code translation !*/
@ -264,8 +264,8 @@ typedef UINT64 ACPI_PHYSICAL_ADDRESS;
/*! [Begin] no source code translation (keep the typedefs as-is) */
typedef unsigned int UINT32;
typedef int INT32;
// typedef unsigned int UINT32;
// typedef int INT32;
/*! [End] no source code translation !*/