From: vanjeff Date: Thu, 4 Sep 2008 04:17:20 +0000 (+0000) Subject: Remove unnecessary CONST. X-Git-Tag: edk2-stable201903~20411 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=6fc2b00b1aff69e31e83b3ec317e95db9ea0b37e;p=mirror_edk2.git Remove unnecessary CONST. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5809 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/IntelFrameworkModulePkg/Universal/PcatSingleSegmentPciCfgPei/PciCfgInternal.h b/IntelFrameworkModulePkg/Universal/PcatSingleSegmentPciCfgPei/PciCfgInternal.h index 7326a1b81d..5c8bd8a368 100644 --- a/IntelFrameworkModulePkg/Universal/PcatSingleSegmentPciCfgPei/PciCfgInternal.h +++ b/IntelFrameworkModulePkg/Universal/PcatSingleSegmentPciCfgPei/PciCfgInternal.h @@ -149,8 +149,8 @@ PciCfg2Modify ( IN CONST EFI_PEI_PCI_CFG2_PPI *This, IN EFI_PEI_PCI_CFG_PPI_WIDTH Width, IN UINT64 Address, - IN CONST VOID *SetBits, - IN CONST VOID *ClearBits + IN VOID *SetBits, + IN VOID *ClearBits ); diff --git a/MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PciCfg2.c b/MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PciCfg2.c index 614df948a2..ae177f487c 100644 --- a/MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PciCfg2.c +++ b/MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PciCfg2.c @@ -150,8 +150,8 @@ PciCfg2Modify ( IN CONST EFI_PEI_PCI_CFG2_PPI *This, IN EFI_PEI_PCI_CFG_PPI_WIDTH Width, IN UINT64 Address, - IN CONST VOID *SetBits, - IN CONST VOID *ClearBits + IN VOID *SetBits, + IN VOID *ClearBits );