diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-30 02:19:41 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-30 02:19:41 +0000 |
commit | 7c24ae3685d4b97155c73f8596386f988931fecf (patch) | |
tree | 9dcd6e771f5b11bfc31a6d49ff9063c20b633125 | |
parent | b16b8bf9d06fb305da930d8441a2fa6d393b4053 (diff) | |
download | edk2-7c24ae3685d4b97155c73f8596386f988931fecf.zip edk2-7c24ae3685d4b97155c73f8596386f988931fecf.tar.gz edk2-7c24ae3685d4b97155c73f8596386f988931fecf.tar.bz2 |
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
-rw-r--r-- | MdeModulePkg/Bus/Pci/UndiRuntimeDxe/Init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Bus/Pci/UndiRuntimeDxe/Init.c b/MdeModulePkg/Bus/Pci/UndiRuntimeDxe/Init.c index 28ce111..78b1414 100644 --- a/MdeModulePkg/Bus/Pci/UndiRuntimeDxe/Init.c +++ b/MdeModulePkg/Bus/Pci/UndiRuntimeDxe/Init.c @@ -1,7 +1,7 @@ /** @file
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
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
@@ -514,7 +514,7 @@ UndiErrorDeletePxe: }
UndiErrorDeleteDevice:
- if (PciAttributesSaved == TRUE) {
+ if (PciAttributesSaved) {
//
// Restore original PCI attributes
//
|