mirror of https://github.com/acidanthera/audk.git
Fix non-boolean comparison expression.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10165 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
667ffa38d1
commit
de558d9dfe
|
@ -898,7 +898,7 @@ AppendPciDevicePath (
|
|||
return ReturnDevicePath;
|
||||
}
|
||||
}
|
||||
if (ThisFunc == 0 && !(PciPtr->Hdr.HeaderType & HEADER_TYPE_MULTI_FUNCTION)) {
|
||||
if (ThisFunc == 0 && ((PciPtr->Hdr.HeaderType & HEADER_TYPE_MULTI_FUNCTION) != HEADER_TYPE_MULTI_FUNCTION)) {
|
||||
//
|
||||
// Skip sub functions, this is not a multi function device
|
||||
//
|
||||
|
|
|
@ -403,7 +403,7 @@ F2UCreateOneOfOpCode (
|
|||
|
||||
}
|
||||
|
||||
if (FwOneOfOp->Flags & EFI_IFR_FLAG_RESET_REQUIRED) {
|
||||
if ((FwOneOfOp->Flags & EFI_IFR_FLAG_RESET_REQUIRED) == EFI_IFR_FLAG_RESET_REQUIRED) {
|
||||
UOpcode.Question.Flags |= EFI_IFR_FLAG_RESET_REQUIRED;
|
||||
}
|
||||
|
||||
|
@ -522,7 +522,7 @@ F2UCreateOrderedListOpCode (
|
|||
}
|
||||
}
|
||||
|
||||
if (FwOneOfOp->Flags & EFI_IFR_FLAG_RESET_REQUIRED) {
|
||||
if ((FwOneOfOp->Flags & EFI_IFR_FLAG_RESET_REQUIRED) == EFI_IFR_FLAG_RESET_REQUIRED) {
|
||||
UOpcode.Question.Flags |= EFI_IFR_FLAG_RESET_REQUIRED;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Routines that support Misc SubClass data records translation.
|
||||
|
||||
Copyright (c) 2009, Intel Corporation
|
||||
Copyright (c) 2009 - 2010, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
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
|
||||
|
@ -480,7 +480,7 @@ SmbiosFldMiscType3 (
|
|||
OFFSET_OF (SMBIOS_TABLE_TYPE3, ContainedElementCount))
|
||||
= (UINT8)Ec->ChassisElementCount;
|
||||
|
||||
if( Ec->ChassisElementCount ) {
|
||||
if(Ec->ChassisElementCount > 0) {
|
||||
//
|
||||
// Element Record Length
|
||||
// Current solution covers first 3 bytes; user can extend to meet its requirements.
|
||||
|
|
Loading…
Reference in New Issue