diff options
author | Laszlo Ersek <lersek@redhat.com> | 2015-10-16 15:46:42 +0000 |
---|---|---|
committer | lersek <lersek@Edk2> | 2015-10-16 15:46:42 +0000 |
commit | 5efb28784f422debfe310b210a84b6334689c4d2 (patch) | |
tree | 4727ccb738ec3017f601ead9d7310d3a9707f810 /MdeModulePkg/Universal/SmbiosDxe | |
parent | fcdfd249ec4782b18b5a908d90f95080bbc7c6ff (diff) | |
download | edk2-platforms-5efb28784f422debfe310b210a84b6334689c4d2.tar.xz |
MdeModulePkg: SmbiosDxe: soften DEBUG messages about table reallocation
These messages don't report errors, hence they should be emitted as
EFI_D_INFO (or EFI_D_VERBOSE even).
Cc: Star Zeng <star.zeng@intel.com>
Cc: Drew Jones <drjones@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18621 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/SmbiosDxe')
-rw-r--r-- | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c index f29c47b7b4..809dff84ac 100644 --- a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c +++ b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c @@ -1143,7 +1143,8 @@ SmbiosCreateTable ( // If new SMBIOS table size exceeds the previous allocated page,
// it is time to re-allocate memory (below 4GB).
//
- DEBUG ((EFI_D_ERROR, "SmbiosCreateTable() re-allocate SMBIOS 32-bit table\n"));
+ DEBUG ((EFI_D_INFO, "%a() re-allocate SMBIOS 32-bit table\n",
+ __FUNCTION__));
if (EntryPointStructure->TableAddress != 0) {
//
// Free the previous allocated page
@@ -1311,7 +1312,8 @@ SmbiosCreate64BitTable ( // If new SMBIOS table size exceeds the previous allocated page,
// it is time to re-allocate memory at anywhere.
//
- DEBUG ((EFI_D_ERROR, "SmbiosCreate64BitTable() re-allocate SMBIOS 64-bit table\n"));
+ DEBUG ((EFI_D_INFO, "%a() re-allocate SMBIOS 64-bit table\n",
+ __FUNCTION__));
if (Smbios30EntryPointStructure->TableAddress != 0) {
//
// Free the previous allocated page
|