mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
Changed names of the major objects for clarity
date 2000.08.30.20.12.00; author rmoore1; state Exp;
This commit is contained in:
parent
41388637ca
commit
1677a7c9af
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* Name: amlcode.h - Definitions for AML, as included in "definition blocks"
|
* Name: amlcode.h - Definitions for AML, as included in "definition blocks"
|
||||||
@ -248,7 +247,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Internal opcodes
|
* Internal opcodes
|
||||||
* Use only "Unknown" AML opcodes, don't attempt to use
|
* Use only "Unknown" AML opcodes, don't attempt to use
|
||||||
* any valid ACPI ASCII values (A-Z, 0-9, '-')
|
* any valid ACPI ASCII values (A-Z, 0-9, '-')
|
||||||
*/
|
*/
|
||||||
@ -263,8 +262,6 @@
|
|||||||
#define AML_RETURN_VALUE_OP (UINT16) 0x0036
|
#define AML_RETURN_VALUE_OP (UINT16) 0x0036
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define ARG_NONE 0x0
|
#define ARG_NONE 0x0
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -304,7 +301,7 @@
|
|||||||
#define ARGI_STRING 0x06
|
#define ARGI_STRING 0x06
|
||||||
#define ARGI_BUFFER 0x07
|
#define ARGI_BUFFER 0x07
|
||||||
#define ARGI_PACKAGE 0x08
|
#define ARGI_PACKAGE 0x08
|
||||||
#define ARGI_DATAOBJECT 0x09 /* Buffer, string, package or NTE reference - Used only by SizeOf operator*/
|
#define ARGI_DATAOBJECT 0x09 /* Buffer, string, package or reference to a Node - Used only by SizeOf operator*/
|
||||||
#define ARGI_COMPLEXOBJ 0x0A /* Buffer or package */
|
#define ARGI_COMPLEXOBJ 0x0A /* Buffer or package */
|
||||||
#define ARGI_MUTEX 0x0B
|
#define ARGI_MUTEX 0x0B
|
||||||
#define ARGI_EVENT 0x0C
|
#define ARGI_EVENT 0x0C
|
||||||
@ -451,13 +448,11 @@ typedef enum
|
|||||||
|
|
||||||
extern UINT8 AcpiGbl_Aml [NUM_OPCODES];
|
extern UINT8 AcpiGbl_Aml [NUM_OPCODES];
|
||||||
extern UINT16 AcpiGbl_Pfx [NUM_OPCODES];
|
extern UINT16 AcpiGbl_Pfx [NUM_OPCODES];
|
||||||
extern INT8 *AcpiGbl_ShortOps [NUM_OPCODES];
|
extern NATIVE_CHAR *AcpiGbl_RegionTypes [NUM_REGION_TYPES];
|
||||||
extern INT8 *AcpiGbl_LongOps [NUM_OPCODES];
|
extern NATIVE_CHAR *AcpiGbl_MatchOps [NUM_MATCH_OPS];
|
||||||
extern INT8 *AcpiGbl_RegionTypes [NUM_REGION_TYPES];
|
extern NATIVE_CHAR *AcpiGbl_AccessTypes [NUM_ACCESS_TYPES];
|
||||||
extern INT8 *AcpiGbl_MatchOps [NUM_MATCH_OPS];
|
extern NATIVE_CHAR *AcpiGbl_UpdateRules [NUM_UPDATE_RULES];
|
||||||
extern INT8 *AcpiGbl_AccessTypes [NUM_ACCESS_TYPES];
|
extern NATIVE_CHAR *AcpiGbl_FENames [NUM_FIELD_NAMES];
|
||||||
extern INT8 *AcpiGbl_UpdateRules [NUM_UPDATE_RULES];
|
|
||||||
extern INT8 *AcpiGbl_FENames [NUM_FIELD_NAMES];
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -468,7 +463,7 @@ extern INT8 *AcpiGbl_FENames [NUM_FIELD_NAMES];
|
|||||||
|
|
||||||
/* Data used in keeping track of fields */
|
/* Data used in keeping track of fields */
|
||||||
|
|
||||||
INT8 *AcpiGbl_FENames[NUM_FIELD_NAMES] =
|
NATIVE_CHAR *AcpiGbl_FENames[NUM_FIELD_NAMES] =
|
||||||
{
|
{
|
||||||
"skip",
|
"skip",
|
||||||
"?access?"
|
"?access?"
|
||||||
@ -477,7 +472,7 @@ INT8 *AcpiGbl_FENames[NUM_FIELD_NAMES] =
|
|||||||
|
|
||||||
/* Region type decoding */
|
/* Region type decoding */
|
||||||
|
|
||||||
INT8 *AcpiGbl_RegionTypes[NUM_REGION_TYPES] =
|
NATIVE_CHAR *AcpiGbl_RegionTypes[NUM_REGION_TYPES] =
|
||||||
{
|
{
|
||||||
"SystemMemory",
|
"SystemMemory",
|
||||||
"SystemIO",
|
"SystemIO",
|
||||||
@ -487,7 +482,7 @@ INT8 *AcpiGbl_RegionTypes[NUM_REGION_TYPES] =
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
INT8 *AcpiGbl_MatchOps[NUM_MATCH_OPS] =
|
NATIVE_CHAR *AcpiGbl_MatchOps[NUM_MATCH_OPS] =
|
||||||
{
|
{
|
||||||
"Error",
|
"Error",
|
||||||
"MTR",
|
"MTR",
|
||||||
@ -501,7 +496,7 @@ INT8 *AcpiGbl_MatchOps[NUM_MATCH_OPS] =
|
|||||||
|
|
||||||
/* Access type decoding */
|
/* Access type decoding */
|
||||||
|
|
||||||
INT8 *AcpiGbl_AccessTypes[NUM_ACCESS_TYPES] =
|
NATIVE_CHAR *AcpiGbl_AccessTypes[NUM_ACCESS_TYPES] =
|
||||||
{
|
{
|
||||||
"AnyAcc",
|
"AnyAcc",
|
||||||
"ByteAcc",
|
"ByteAcc",
|
||||||
@ -515,7 +510,7 @@ INT8 *AcpiGbl_AccessTypes[NUM_ACCESS_TYPES] =
|
|||||||
|
|
||||||
/* Update rule decoding */
|
/* Update rule decoding */
|
||||||
|
|
||||||
INT8 *AcpiGbl_UpdateRules[NUM_UPDATE_RULES] =
|
NATIVE_CHAR *AcpiGbl_UpdateRules[NUM_UPDATE_RULES] =
|
||||||
{
|
{
|
||||||
"Preserve",
|
"Preserve",
|
||||||
"WriteAsOnes",
|
"WriteAsOnes",
|
||||||
|
Loading…
Reference in New Issue
Block a user