From a1e3528b313590d31523ef8b68ce708621f35fde Mon Sep 17 00:00:00 2001 From: mdkinney Date: Tue, 14 Aug 2007 00:00:01 +0000 Subject: Replace EFI_MAX() with MAX() Replace EFI_MIN() with MIN() git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3631 6f19259b-4bc3-4df7-8a09-765794883524 --- IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/atapi.c | 2 +- IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.c | 2 +- IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.h | 2 -- IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c | 8 +------- 4 files changed, 3 insertions(+), 11 deletions(-) (limited to 'IntelFrameworkModulePkg/Bus/Pci') diff --git a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/atapi.c b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/atapi.c index 2609591c0c..210d9ddf32 100644 --- a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/atapi.c +++ b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/atapi.c @@ -754,7 +754,7 @@ PioReadWriteData ( WordCount = WordCount & 0xffff; WordCount /= 2; - WordCount = EFI_MIN (WordCount, (RequiredWordCount - ActualWordCount)); + WordCount = MIN (WordCount, (RequiredWordCount - ActualWordCount)); if (Read) { IDEReadPortWMultiple ( diff --git a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.c b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.c index 5830044752..35d489cb98 100644 --- a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.c +++ b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.c @@ -393,7 +393,7 @@ IDEBusDriverBindingStart ( continue; } - EndIdeDevice = (UINT8) EFI_MIN ((MaxDevices - 1), EndIdeDevice); + EndIdeDevice = (UINT8) MIN ((MaxDevices - 1), EndIdeDevice); // // Now inform the IDE Controller Init Module. Sept10 diff --git a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.h b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.h index 9dbf632392..9c6e41bc95 100644 --- a/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.h +++ b/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/idebus.h @@ -43,8 +43,6 @@ // // Extra Definition to porting // -#define EFI_MIN(a, b) (((a) < (b)) ? (a) : (b)) - #define MAX_IDE_DEVICE 4 #define MAX_IDE_CHANNELS 2 #define MAX_IDE_DRIVES 2 diff --git a/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c b/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c index 68820baac9..c76c3ebd17 100644 --- a/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c +++ b/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciOptionRomSupport.c @@ -15,12 +15,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "PciResourceSupport.h" #include -// -// Min Max -// -#define EFI_MIN(a, b) (((a) < (b)) ? (a) : (b)) -#define EFI_MAX(a, b) (((a) > (b)) ? (a) : (b)) - EFI_STATUS GetOpRomInfo ( @@ -245,7 +239,7 @@ Returns: // of the legacy length and the PCIR Image Length // if (CodeType == PCI_CODE_TYPE_PCAT_IMAGE) { - RomImageSize = EFI_MAX(RomImageSize, (((EFI_LEGACY_EXPANSION_ROM_HEADER *)RomHeader)->Size512 * 512)); + RomImageSize = MAX(RomImageSize, (((EFI_LEGACY_EXPANSION_ROM_HEADER *)RomHeader)->Size512 * 512)); } if (RomImageSize > 0) { -- cgit v1.2.3