mirror of https://github.com/acidanthera/audk.git
Boolean values and variable type BOOLEAN should not use explicit comparisons to TRUE or FALSE
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5377 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b16b8bf9d0
commit
7c24ae3685
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Initialization functions for EFI UNDI32 driver.
|
Initialization functions for EFI UNDI32 driver.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation
|
Copyright (c) 2006 - 2008, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -514,7 +514,7 @@ UndiErrorDeletePxe:
|
||||||
}
|
}
|
||||||
|
|
||||||
UndiErrorDeleteDevice:
|
UndiErrorDeleteDevice:
|
||||||
if (PciAttributesSaved == TRUE) {
|
if (PciAttributesSaved) {
|
||||||
//
|
//
|
||||||
// Restore original PCI attributes
|
// Restore original PCI attributes
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue