summaryrefslogtreecommitdiff
path: root/StdLib/Include
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/Include')
-rw-r--r--StdLib/Include/Efi/EfiSocketLib.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/StdLib/Include/Efi/EfiSocketLib.h b/StdLib/Include/Efi/EfiSocketLib.h
index f71653fa16..d78e9f6a12 100644
--- a/StdLib/Include/Efi/EfiSocketLib.h
+++ b/StdLib/Include/Efi/EfiSocketLib.h
@@ -115,18 +115,12 @@
**/
#define RAISE_TPL(PreviousTpl, tpl) \
VERIFY_TPL ( tpl ); \
- PreviousTpl = gBS->RaiseTPL ( tpl ); \
- DEBUG (( DEBUG_TPL | DEBUG_TPL, \
- "%d: TPL\r\n", \
- tpl ))
+ PreviousTpl = gBS->RaiseTPL ( tpl );
/**
Restore the TPL to the previous value
**/
#define RESTORE_TPL(tpl) \
- DEBUG (( DEBUG_TPL | DEBUG_TPL, \
- "%d: TPL\r\n", \
- tpl )); \
gBS->RestoreTPL ( tpl )
//------------------------------------------------------------------------------