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
This commit is contained in:
erictian 2011-08-24 09:37:08 +00:00
parent 4496ff751f
commit 71f6080748
2 changed files with 12 additions and 12 deletions

View File

@ -2,7 +2,7 @@
The file provides the protocol to install or remove an ACPI The file provides the protocol to install or remove an ACPI
table from a platform. 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 This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 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 typedef
EFI_STATUS EFI_STATUS
(EFIAPI *EFI_ACPI_TABLE_INSTALL_ACPI_TABLE)( (EFIAPI *EFI_ACPI_TABLE_INSTALL_ACPI_TABLE)(
IN CONST EFI_ACPI_TABLE_PROTOCOL *This, IN EFI_ACPI_TABLE_PROTOCOL *This,
IN CONST VOID *AcpiTableBuffer, IN VOID *AcpiTableBuffer,
IN UINTN AcpiTableBufferSize, IN UINTN AcpiTableBufferSize,
OUT UINTN *TableKey OUT UINTN *TableKey
); );
@ -100,8 +100,8 @@ EFI_STATUS
typedef typedef
EFI_STATUS EFI_STATUS
(EFIAPI *EFI_ACPI_TABLE_UNINSTALL_ACPI_TABLE)( (EFIAPI *EFI_ACPI_TABLE_UNINSTALL_ACPI_TABLE)(
IN CONST EFI_ACPI_TABLE_PROTOCOL *This, IN EFI_ACPI_TABLE_PROTOCOL *This,
IN UINTN TableKey IN UINTN TableKey
); );
/// ///

View File

@ -4,7 +4,7 @@
and destroy child of the driver to communicate with other host using TCP protocol. and destroy child of the driver to communicate with other host using TCP protocol.
The EFI TCPv4 Protocol provides services to send and receive data stream. The EFI TCPv4 Protocol provides services to send and receive data stream.
Copyright (c) 2006 - 2010, 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 This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution. the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at The full text of the license may be found at
@ -244,12 +244,12 @@ typedef struct {
typedef typedef
EFI_STATUS EFI_STATUS
(EFIAPI *EFI_TCP4_GET_MODE_DATA)( (EFIAPI *EFI_TCP4_GET_MODE_DATA)(
IN CONST EFI_TCP4_PROTOCOL *This, IN EFI_TCP4_PROTOCOL *This,
OUT EFI_TCP4_CONNECTION_STATE *Tcp4State OPTIONAL, OUT EFI_TCP4_CONNECTION_STATE *Tcp4State OPTIONAL,
OUT EFI_TCP4_CONFIG_DATA *Tcp4ConfigData OPTIONAL, OUT EFI_TCP4_CONFIG_DATA *Tcp4ConfigData OPTIONAL,
OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL, OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL,
OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL, OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,
OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL
); );
/** /**