Skip to content

Commit

Permalink
Sync patch r14750from main trunk.
Browse files Browse the repository at this point in the history
Fix several DEBUG_ERROR messages that are unnecessarily verbose. Several of these are marked as DEBUG_ERROR when they are really not errors.

git-svn-id: https://svn.code.sf.net/p/edk2/code/branches/UDK2010.SR1@14753 6f19259b-4bc3-4df7-8a09-765794883524
  • Loading branch information
vanjeff authored and vanjeff committed Oct 9, 2013
1 parent 32460e6 commit f2c9891
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions UefiCpuPkg/CpuDxe/CpuDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,9 @@ CpuSetMemoryAttributes (
// to avoid unnecessary computing.
//
if (mIsFlushingGCD) {
DEBUG((EFI_D_ERROR, " Flushing GCD\n"));
return EFI_SUCCESS;
}
DEBUG((EFI_D_INFO, " Flushing GCD\n"));
return EFI_SUCCESS;
}

switch (Attributes) {
case EFI_MEMORY_UC:
Expand Down

0 comments on commit f2c9891

Please sign in to comment.