summaryrefslogtreecommitdiffstats
path: root/UefiCpuPkg/CpuIo2Dxe
diff options
context:
space:
mode:
Diffstat (limited to 'UefiCpuPkg/CpuIo2Dxe')
-rw-r--r--UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c b/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c
index 802342caae..3d8a799230 100644
--- a/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c
+++ b/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c
@@ -1,7 +1,7 @@
/** @file
Produces the CPU I/O 2 Protocol.
-Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>
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
@@ -116,7 +116,7 @@ CpuIoCheckParameter (
//
// Check to see if Width is in the valid range
//
- if (Width < 0 || Width >= EfiCpuIoWidthMaximum) {
+ if ((UINT32)Width >= EfiCpuIoWidthMaximum) {
return EFI_INVALID_PARAMETER;
}