diff options
author | erictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-24 09:37:08 +0000 |
---|---|---|
committer | erictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-24 09:37:08 +0000 |
commit | 71f6080748fc17c6028758c8b8f8444159e4355d (patch) | |
tree | 9aea16c90b136c69cc861a954fb8ac59560d3f7b /MdePkg/Include/Protocol/AcpiTable.h | |
parent | 4496ff751f7843fbbedf91f1a58212eb7c9a1ca8 (diff) | |
download | edk2-platforms-71f6080748fc17c6028758c8b8f8444159e4355d.tar.xz |
Remove CONST modifier to be spec compliance
Signed-off-by: erictian
Reviewed-by: lgao4
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12193 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/AcpiTable.h')
-rw-r--r-- | MdePkg/Include/Protocol/AcpiTable.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Include/Protocol/AcpiTable.h b/MdePkg/Include/Protocol/AcpiTable.h index afc527c1a5..13a39d89c1 100644 --- a/MdePkg/Include/Protocol/AcpiTable.h +++ b/MdePkg/Include/Protocol/AcpiTable.h @@ -2,7 +2,7 @@ The file provides the protocol to install or remove an ACPI
table from a platform.
- Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2011, 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
@@ -66,8 +66,8 @@ typedef struct _EFI_ACPI_TABLE_PROTOCOL EFI_ACPI_TABLE_PROTOCOL; typedef
EFI_STATUS
(EFIAPI *EFI_ACPI_TABLE_INSTALL_ACPI_TABLE)(
- IN CONST EFI_ACPI_TABLE_PROTOCOL *This,
- IN CONST VOID *AcpiTableBuffer,
+ IN EFI_ACPI_TABLE_PROTOCOL *This,
+ IN VOID *AcpiTableBuffer,
IN UINTN AcpiTableBufferSize,
OUT UINTN *TableKey
);
@@ -100,8 +100,8 @@ EFI_STATUS typedef
EFI_STATUS
(EFIAPI *EFI_ACPI_TABLE_UNINSTALL_ACPI_TABLE)(
- IN CONST EFI_ACPI_TABLE_PROTOCOL *This,
- IN UINTN TableKey
+ IN EFI_ACPI_TABLE_PROTOCOL *This,
+ IN UINTN TableKey
);
///
|