summaryrefslogtreecommitdiff
path: root/IntelFrameworkPkg/Library
diff options
context:
space:
mode:
authortding1 <tding1@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-04 06:12:44 +0000
committertding1 <tding1@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-04 06:12:44 +0000
commit4ebb0d9eb125fe6ba7d58fc547a32f514d8b9546 (patch)
treea731f045c0e7854ca988807e0f6b7044cd768559 /IntelFrameworkPkg/Library
parent9fd4915febf59e2767e71a748d94c25246a744c6 (diff)
downloadedk2-4ebb0d9eb125fe6ba7d58fc547a32f514d8b9546.zip
edk2-4ebb0d9eb125fe6ba7d58fc547a32f514d8b9546.tar.gz
edk2-4ebb0d9eb125fe6ba7d58fc547a32f514d8b9546.tar.bz2
fix ecc report-out issues
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6831 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Library')
-rw-r--r--IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf4
-rw-r--r--IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c16
-rw-r--r--IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf3
-rw-r--r--IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/InternalSmbusLib.h4
-rw-r--r--IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf4
5 files changed, 10 insertions, 21 deletions
diff --git a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf
index a1ccb3f..b21f662 100644
--- a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf
+++ b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf
@@ -46,10 +46,6 @@
[LibraryClasses]
- BaseLib
- DebugLib
- UefiBootServicesTableLib
-
[Protocols]
gEfiCpuIoProtocolGuid # PROTOCOL ALWAYS_CONSUMED
diff --git a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c
index 1a39f21..f43db07 100644
--- a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c
+++ b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c
@@ -48,7 +48,7 @@ MmioReadBuffer8 (
ReturnBuffer = Buffer;
- while (Length--) {
+ while (Length-- > 0) {
*(Buffer++) = MmioRead8 (StartAddress++);
}
@@ -97,7 +97,7 @@ MmioReadBuffer16 (
ReturnBuffer = Buffer;
- while (Length) {
+ while (Length > 0) {
*(Buffer++) = MmioRead16 (StartAddress);
StartAddress += sizeof (UINT16);
Length -= sizeof (UINT16);
@@ -148,7 +148,7 @@ MmioReadBuffer32 (
ReturnBuffer = Buffer;
- while (Length) {
+ while (Length > 0) {
*(Buffer++) = MmioRead32 (StartAddress);
StartAddress += sizeof (UINT32);
Length -= sizeof (UINT32);
@@ -199,7 +199,7 @@ MmioReadBuffer64 (
ReturnBuffer = Buffer;
- while (Length) {
+ while (Length > 0) {
*(Buffer++) = MmioRead64 (StartAddress);
StartAddress += sizeof (UINT64);
Length -= sizeof (UINT64);
@@ -242,7 +242,7 @@ MmioWriteBuffer8 (
ReturnBuffer = (UINT8 *) Buffer;
- while (Length--) {
+ while (Length-- > 0) {
MmioWrite8 (StartAddress++, *(Buffer++));
}
@@ -293,7 +293,7 @@ MmioWriteBuffer16 (
ReturnBuffer = (UINT16 *) Buffer;
- while (Length) {
+ while (Length > 0) {
MmioWrite16 (StartAddress, *(Buffer++));
StartAddress += sizeof (UINT16);
@@ -347,7 +347,7 @@ MmioWriteBuffer32 (
ReturnBuffer = (UINT32 *) Buffer;
- while (Length) {
+ while (Length > 0) {
MmioWrite32 (StartAddress, *(Buffer++));
StartAddress += sizeof (UINT32);
@@ -400,7 +400,7 @@ MmioWriteBuffer64 (
ReturnBuffer = (UINT64 *) Buffer;
- while (Length) {
+ while (Length > 0) {
MmioWrite64 (StartAddress, *(Buffer++));
StartAddress += sizeof (UINT64);
diff --git a/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf b/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf
index 4b129f6..c56bb0c 100644
--- a/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf
+++ b/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf
@@ -41,9 +41,6 @@
[LibraryClasses]
- DebugLib
- UefiBootServicesTableLib
- DevicePathLib
[Protocols]
gEfiLoadedImageProtocolGuid # PROTOCOL ALWAYS_CONSUMED
diff --git a/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/InternalSmbusLib.h b/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/InternalSmbusLib.h
index 96597d7..3afa232 100644
--- a/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/InternalSmbusLib.h
+++ b/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/InternalSmbusLib.h
@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
-#ifndef __INTERNAL_SMBUS_LIB_H
-#define __INTERNAL_SMBUS_LIB_H
+#ifndef _INTERNAL_SMBUS_LIB_H_
+#define _INTERNAL_SMBUS_LIB_H_
#include <PiPei.h>
diff --git a/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf b/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf
index fb0afa7..1272405 100644
--- a/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf
+++ b/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf
@@ -43,10 +43,6 @@
[LibraryClasses]
- BaseMemoryLib
- PeiServicesLib
- DebugLib
- PeiServicesTablePointerLib
[Ppis]
gEfiPeiSmbusPpiGuid # PPI ALWAYS_CONSUMED