diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 03:17:26 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-04 03:17:26 +0000 |
commit | 0e667e82c073f7808ce8b6c5f66c040d8d45dd09 (patch) | |
tree | 673549ea865f91e8fe88160664e9b29582c298d8 | |
parent | 01edaf2adc5cd831b9672b24e524c855d522a12b (diff) | |
download | edk2-0e667e82c073f7808ce8b6c5f66c040d8d45dd09.zip edk2-0e667e82c073f7808ce8b6c5f66c040d8d45dd09.tar.gz edk2-0e667e82c073f7808ce8b6c5f66c040d8d45dd09.tar.bz2 |
Remove unnecessary CONST.
.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5808 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | EdkCompatibilityPkg/Compatibility/PciCfg2ToPciCfgThunk/PciCfg2ToPciCfgThunk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/PciCfg2ToPciCfgThunk/PciCfg2ToPciCfgThunk.c b/EdkCompatibilityPkg/Compatibility/PciCfg2ToPciCfgThunk/PciCfg2ToPciCfgThunk.c index bc36050..18c272f 100644 --- a/EdkCompatibilityPkg/Compatibility/PciCfg2ToPciCfgThunk/PciCfg2ToPciCfgThunk.c +++ b/EdkCompatibilityPkg/Compatibility/PciCfg2ToPciCfgThunk/PciCfg2ToPciCfgThunk.c @@ -430,8 +430,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
)
{
EFI_STATUS Status;
|