summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c')
-rw-r--r--MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c b/MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c
index 03b7394c4d..d1372d7613 100644
--- a/MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c
+++ b/MdeModulePkg/Universal/Acpi/AcpiTableDxe/AmlNamespace.c
@@ -1,7 +1,7 @@
/** @file
ACPI Sdt Protocol Driver
- Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved. <BR>
+ Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved. <BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -16,11 +16,11 @@
/**
Construct node list according to the AML handle.
-
+
@param[in] AmlHandle AML handle.
@param[in] AmlRootNodeList AML root node list.
@param[in] AmlParentNodeList AML parent node list.
-
+
@retval EFI_SUCCESS Success.
@retval EFI_INVALID_PARAMETER AML handle does not refer to a valid ACPI object.
**/
@@ -33,11 +33,11 @@ AmlConstructNodeList (
/**
Create AML Node.
-
+
@param[in] NameSeg AML NameSeg.
@param[in] Parent AML parent node list.
@param[in] AmlByteEncoding AML Byte Encoding.
-
+
@return AML Node.
**/
EFI_AML_NODE_LIST *
@@ -66,11 +66,11 @@ AmlCreateNode (
/**
Find the AML NameSeg in the children of AmlParentNodeList.
-
+
@param[in] NameSeg AML NameSeg.
@param[in] AmlParentNodeList AML parent node list.
@param[in] Create TRUE means to create node if not found.
-
+
@return AmlChildNode whoes name is same as NameSeg.
**/
EFI_AML_NODE_LIST *
@@ -120,12 +120,12 @@ AmlFindNodeInThis (
/**
Find the AML NameString in the children of AmlParentNodeList or AmlRootNodeList.
-
+
@param[in] NameString AML NameString.
@param[in] AmlRootNodeList AML root node list.
@param[in] AmlParentNodeList AML parent node list.
@param[in] Create TRUE means to create node if not found.
-
+
@return AmlChildNode whoes name is same as NameSeg.
**/
EFI_AML_NODE_LIST *
@@ -166,7 +166,7 @@ AmlFindNodeInTheTree (
} else {
AmlCurrentNodeList = AmlParentNodeList;
}
-
+
//
// Handle name segment
//
@@ -206,13 +206,13 @@ AmlFindNodeInTheTree (
/**
Insert the NameString to the AmlNodeList.
-
+
@param[in] NameString AML NameString.
@param[in] Buffer Buffer for the Node.
@param[in] Size Size for the Node.
@param[in] AmlRootNodeList AML root node list.
@param[in] AmlParentNodeList AML parent node list.
-
+
@return AmlChildNode whoes name is NameString.
**/
EFI_AML_NODE_LIST *
@@ -278,11 +278,11 @@ AmlInsertNodeToTree (
/**
Construct child node list according to the AML handle.
-
+
@param[in] AmlHandle AML handle.
@param[in] AmlRootNodeList AML root node list.
@param[in] AmlParentNodeList AML parent node list.
-
+
@retval EFI_SUCCESS Success.
@retval EFI_INVALID_PARAMETER AML handle does not refer to a valid ACPI object.
**/
@@ -369,11 +369,11 @@ AmlConstructNodeListForChild (
/**
Construct node list according to the AML handle.
-
+
@param[in] AmlHandle AML handle.
@param[in] AmlRootNodeList AML root node list.
@param[in] AmlParentNodeList AML parent node list.
-
+
@retval EFI_SUCCESS Success.
@retval EFI_INVALID_PARAMETER AML handle does not refer to a valid ACPI object.
**/
@@ -420,7 +420,7 @@ AmlConstructNodeList (
/**
Destruct node list
-
+
@param[in] AmlParentNodeList AML parent node list.
**/
VOID
@@ -465,7 +465,7 @@ AmlDestructNodeList (
/**
Dump node list
-
+
@param[in] AmlParentNodeList AML parent node list.
@param[in] Level Output debug level.
**/
@@ -502,16 +502,16 @@ AmlDumpNodeInfo (
/**
Returns the handle of the ACPI object representing the specified ACPI AML path
-
+
@param[in] AmlHandle Points to the handle of the object representing the starting point for the path search.
@param[in] AmlPath Points to the ACPI AML path.
@param[out] Buffer On return, points to the ACPI object which represents AcpiPath, relative to
HandleIn.
@param[in] FromRoot TRUE means to find AML path from \ (Root) Node.
FALSE means to find AML path from this Node (The HandleIn).
-
+
@retval EFI_SUCCESS Success
- @retval EFI_INVALID_PARAMETER HandleIn does not refer to a valid ACPI object.
+ @retval EFI_INVALID_PARAMETER HandleIn does not refer to a valid ACPI object.
**/
EFI_STATUS
AmlFindPath (