From: yshang1 Date: Thu, 19 Jul 2007 03:18:32 +0000 (+0000) Subject: Fix bugs in MdePkg for GCC build. X-Git-Tag: edk2-stable201903~22616 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=581e82a1f62368f6669c9e30fef8f56c469fcb4a Fix bugs in MdePkg for GCC build. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3345 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/IndustryStandard/SmBus.h b/MdePkg/Include/IndustryStandard/SmBus.h index c557e203dd..27687f8a70 100644 --- a/MdePkg/Include/IndustryStandard/SmBus.h +++ b/MdePkg/Include/IndustryStandard/SmBus.h @@ -41,8 +41,6 @@ typedef struct { UINTN SmbusDeviceAddress : 7; } EFI_SMBUS_DEVICE_ADDRESS; -typedef UINTN EFI_SMBUS_DEVICE_COMMAND; - typedef enum _EFI_SMBUS_OPERATION { EfiSmbusQuickRead, diff --git a/MdePkg/Library/PeiServicesTablePointerLibIdt/InternalPeiServicesTablePointer.h b/MdePkg/Library/PeiServicesTablePointerLibIdt/InternalPeiServicesTablePointer.h index 51d2d92202..8841cea033 100644 --- a/MdePkg/Library/PeiServicesTablePointerLibIdt/InternalPeiServicesTablePointer.h +++ b/MdePkg/Library/PeiServicesTablePointerLibIdt/InternalPeiServicesTablePointer.h @@ -32,4 +32,4 @@ AsmPeiSevicesTablePointer ( ); -#endif \ No newline at end of file +#endif diff --git a/MdePkg/Library/UefiScsiLib/UefiScsiLib.c b/MdePkg/Library/UefiScsiLib/UefiScsiLib.c index ee576d7a14..ed8ca82335 100644 --- a/MdePkg/Library/UefiScsiLib/UefiScsiLib.c +++ b/MdePkg/Library/UefiScsiLib/UefiScsiLib.c @@ -256,7 +256,7 @@ SubmitModeSense10Command ( ScsiIo->GetDeviceLocation (ScsiIo, &Target, &Lun); Cdb[0] = EFI_SCSI_OP_MODE_SEN10; - Cdb[1] = (UINT8) (Lun & 0xe0 + (DBDField << 3) & 0x08); + Cdb[1] = (UINT8) ((Lun & 0xe0) + ((DBDField << 3) & 0x08)); Cdb[2] = (UINT8) ((PageControl & 0xc0) | (PageCode & 0x3f)); Cdb[7] = (UINT8) (*DataLength >> 8); Cdb[8] = (UINT8) (*DataLength);