summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2014-02-19 09:45:45 -0800
committerRobert Moore <Robert.Moore@intel.com>2014-02-19 09:45:45 -0800
commit8c473dd159c15be0df00e9441f5dfdc8a1241276 (patch)
treea807e317004ab76a8c88bd87d8bd286530d17c77
parent0967643347023026daf2dd98f6dce9fd15a15507 (diff)
Update comments for ACPICA name - no functional change.
Change all comments that contain the string "ACPI CA" to "ACPICA" so that the name is standard across the entire source base.
-rw-r--r--source/common/adisasm.c6
-rw-r--r--source/compiler/aslerror.c6
-rw-r--r--source/compiler/aslmessages.h2
-rw-r--r--source/compiler/aslstubs.c2
-rw-r--r--source/compiler/aslutils.c2
-rw-r--r--source/components/events/evsci.c2
-rw-r--r--source/include/acglobal.h4
-rw-r--r--source/os_specific/service_layers/osunixxf.c2
-rw-r--r--source/os_specific/service_layers/oswinxf.c2
9 files changed, 14 insertions, 14 deletions
diff --git a/source/common/adisasm.c b/source/common/adisasm.c
index 0a69ea274..24e84ec9c 100644
--- a/source/common/adisasm.c
+++ b/source/common/adisasm.c
@@ -242,7 +242,7 @@ AdInitialize (
ACPI_STATUS Status;
- /* ACPI CA subsystem initialization */
+ /* ACPICA subsystem initialization */
Status = AcpiOsInitialize ();
if (ACPI_FAILURE (Status))
@@ -604,7 +604,7 @@ Cleanup:
*
* RETURN: None
*
- * DESCRIPTION: Create the disassembler header, including ACPI CA signon with
+ * DESCRIPTION: Create the disassembler header, including ACPICA signon with
* current time and date.
*
*****************************************************************************/
@@ -636,7 +636,7 @@ AdDisassemblerHeader (
*
* RETURN: None
*
- * DESCRIPTION: Create the ASL table header, including ACPI CA signon with
+ * DESCRIPTION: Create the ASL table header, including ACPICA signon with
* current time and date.
*
*****************************************************************************/
diff --git a/source/compiler/aslerror.c b/source/compiler/aslerror.c
index 21ca7d593..e096894fd 100644
--- a/source/compiler/aslerror.c
+++ b/source/compiler/aslerror.c
@@ -946,14 +946,14 @@ AslError (
* FUNCTION: AslCoreSubsystemError
*
* PARAMETERS: Op - Parse node where error happened
- * Status - The ACPI CA Exception
+ * Status - The ACPICA Exception
* ExtraMessage - additional error message
* Abort - TRUE -> Abort compilation
*
* RETURN: None
*
- * DESCRIPTION: Error reporting routine for exceptions returned by the ACPI
- * CA core subsystem.
+ * DESCRIPTION: Error reporting routine for exceptions returned by the ACPICA
+ * core subsystem.
*
******************************************************************************/
diff --git a/source/compiler/aslmessages.h b/source/compiler/aslmessages.h
index 0e29ec22b..c544eac93 100644
--- a/source/compiler/aslmessages.h
+++ b/source/compiler/aslmessages.h
@@ -368,7 +368,7 @@ char *AslMessages [] =
/* ASL_MSG_CONNECTION_INVALID */ "Invalid OpRegion SpaceId for use of Connection operator",
/* ASL_MSG_CONSTANT_EVALUATION */ "Could not evaluate constant expression",
/* ASL_MSG_CONSTANT_FOLDED */ "Constant expression evaluated and reduced",
-/* ASL_MSG_CORE_EXCEPTION */ "From ACPI CA Subsystem",
+/* ASL_MSG_CORE_EXCEPTION */ "From ACPICA Subsystem",
/* ASL_MSG_DEBUG_FILE_OPEN */ "Could not open debug file",
/* ASL_MSG_DEBUG_FILENAME */ "Could not create debug filename",
/* ASL_MSG_DEPENDENT_NESTING */ "Dependent function macros cannot be nested",\
diff --git a/source/compiler/aslstubs.c b/source/compiler/aslstubs.c
index 5c5ced40f..9e43a0d15 100644
--- a/source/compiler/aslstubs.c
+++ b/source/compiler/aslstubs.c
@@ -125,7 +125,7 @@
/*
- * Stubs to simplify linkage to the ACPI CA core subsystem.
+ * Stubs to simplify linkage to the ACPICA core subsystem.
* Things like Events, Global Lock, etc. are not used
* by the compiler, so they are stubbed out here.
*/
diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c
index 5fdca1b85..f33c3bde2 100644
--- a/source/compiler/aslutils.c
+++ b/source/compiler/aslutils.c
@@ -990,7 +990,7 @@ UtDoConstant (
}
-/* TBD: use version in ACPI CA main code base? */
+/* TBD: use version in ACPICA main code base? */
/*******************************************************************************
*
diff --git a/source/components/events/evsci.c b/source/components/events/evsci.c
index b0c19e52a..ec6c1c191 100644
--- a/source/components/events/evsci.c
+++ b/source/components/events/evsci.c
@@ -208,7 +208,7 @@ AcpiEvSciXruptHandler (
/*
- * We are guaranteed by the ACPI CA initialization/shutdown code that
+ * We are guaranteed by the ACPICA initialization/shutdown code that
* if this interrupt handler is installed, ACPI is enabled.
*/
diff --git a/source/include/acglobal.h b/source/include/acglobal.h
index 8ecdf0459..199868963 100644
--- a/source/include/acglobal.h
+++ b/source/include/acglobal.h
@@ -179,8 +179,8 @@ ACPI_INIT_GLOBAL (UINT8, AcpiGbl_AutoSerializeMethods, TRUE);
/*
* Create the predefined _OSI method in the namespace? Default is TRUE
- * because ACPI CA is fully compatible with other ACPI implementations.
- * Changing this will revert ACPI CA (and machine ASL) to pre-OSI behavior.
+ * because ACPICA is fully compatible with other ACPI implementations.
+ * Changing this will revert ACPICA (and machine ASL) to pre-OSI behavior.
*/
ACPI_INIT_GLOBAL (UINT8, AcpiGbl_CreateOsiMethod, TRUE);
diff --git a/source/os_specific/service_layers/osunixxf.c b/source/os_specific/service_layers/osunixxf.c
index f0f645aff..6c1f5e686 100644
--- a/source/os_specific/service_layers/osunixxf.c
+++ b/source/os_specific/service_layers/osunixxf.c
@@ -1417,7 +1417,7 @@ AcpiOsWritable (
*
* FUNCTION: AcpiOsSignal
*
- * PARAMETERS: Function - ACPI CA signal function code
+ * PARAMETERS: Function - ACPI A signal function code
* Info - Pointer to function-dependent structure
*
* RETURN: Status
diff --git a/source/os_specific/service_layers/oswinxf.c b/source/os_specific/service_layers/oswinxf.c
index 4d1c39fa5..e4563d833 100644
--- a/source/os_specific/service_layers/oswinxf.c
+++ b/source/os_specific/service_layers/oswinxf.c
@@ -1396,7 +1396,7 @@ AcpiOsWriteMemory (
*
* FUNCTION: AcpiOsSignal
*
- * PARAMETERS: Function - ACPI CA signal function code
+ * PARAMETERS: Function - ACPICA signal function code
* Info - Pointer to function-dependent structure
*
* RETURN: Status