summaryrefslogtreecommitdiff
path: root/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-10 17:46:17 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-10 17:46:17 +0000
commit689aa0d6b7372056e03d02bd8187311df30c7ef3 (patch)
treecaaedc959889b01b5b922c4630041fb5ea374d97 /IntelFrameworkPkg/Include/Protocol/AcpiSupport.h
parent38db75072ffa2108872d2db6d8e65658aab0ed0d (diff)
downloadedk2-689aa0d6b7372056e03d02bd8187311df30c7ef3.zip
edk2-689aa0d6b7372056e03d02bd8187311df30c7ef3.tar.gz
edk2-689aa0d6b7372056e03d02bd8187311df30c7ef3.tar.bz2
updated comments
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8512 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Include/Protocol/AcpiSupport.h')
-rw-r--r--IntelFrameworkPkg/Include/Protocol/AcpiSupport.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h b/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h
index bca149e..1b4e0ab 100644
--- a/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h
+++ b/IntelFrameworkPkg/Include/Protocol/AcpiSupport.h
@@ -18,7 +18,7 @@
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@par Revision Reference:
- This Protocol is defined in Framework of ACPI Specification.
+ This Protocol is defined in Framework ACPI Specification.
Version 0.9.
**/
@@ -100,7 +100,7 @@ EFI_STATUS
@param Checksum If TRUE, indicates that the checksum should be
calculated for this table.
@param Version Indicates to which version(s) of ACPI the table should be added.
- @param Pointer to the handle of the table to remove or update.
+ @param Handle Pointer to the handle of the table to remove or update.
@retval EFI_SUCCESS The function completed successfully.
@retval EFI_INVALID_PARAMETER *Handle was zero and Table was NULL.
@@ -147,20 +147,19 @@ EFI_STATUS
This protocol provides some basic services to support publishing ACPI system
tables. The services handle many of the more mundane tasks that are required
to publish a set of tables.
-
- @param GetAcpiTable
- Returns a table specified by an index if it exists.
-
- @param SetAcpiTable
- Adds, removes, or updates ACPI tables
-
- @param PublishTables
- Publishes the ACPI tables.
-
**/
struct _EFI_ACPI_SUPPORT_PROTOCOL {
+///
+/// Returns a table specified by an index if it exists.
+///
EFI_ACPI_GET_ACPI_TABLE GetAcpiTable;
+///
+/// Adds, removes, or updates ACPI tables
+///
EFI_ACPI_SET_ACPI_TABLE SetAcpiTable;
+///
+/// Publishes the ACPI tables.
+///
EFI_ACPI_PUBLISH_TABLES PublishTables;
};