summaryrefslogtreecommitdiffstats
path: root/DuetPkg/PciBusNoEnumerationDxe
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2010-10-13 07:08:29 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2010-10-13 07:08:29 +0000
commit815119f3d95581317847a5288b20c7426c0f45a6 (patch)
tree6d83ddfe80b1c6ce883a4e5c454d25344a866404 /DuetPkg/PciBusNoEnumerationDxe
parent818ff8c267c146967cda6e9e35e56e7f99509d5f (diff)
downloadedk2-815119f3d95581317847a5288b20c7426c0f45a6.tar.gz
edk2-815119f3d95581317847a5288b20c7426c0f45a6.tar.bz2
edk2-815119f3d95581317847a5288b20c7426c0f45a6.zip
DuetPkg, MdeModulePkg: Fix several enum comparions
These comparisons were not comparing an enum variable with a member of the same enum type. GCC 4.5 generated a warning for these comparison operations. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10932 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/PciBusNoEnumerationDxe')
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciIo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciIo.c b/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
index 8e7c815172..61b0870b1a 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
@@ -366,7 +366,7 @@ Returns:
// If Width is EfiPciIoWidthFifoUintX then convert to EfiPciIoWidthUintX
// If Width is EfiPciIoWidthFillUintX then convert to EfiPciIoWidthUintX
//
- if (Width >= EfiPciWidthFifoUint8 && Width <= EfiPciWidthFifoUint64) {
+ if (Width >= EfiPciIoWidthFifoUint8 && Width <= EfiPciIoWidthFifoUint64) {
Count = 1;
}