diff options
author | Olivier Martin <olivier.martin@arm.com> | 2013-08-30 11:51:51 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-08-30 11:51:51 +0000 |
commit | 4ca3c688a4f9042a954e5303f017893de7214d09 (patch) | |
tree | 942928ff48eeaadae6e4e9b4a39fbf4168ad7bae /EmbeddedPkg/Universal/MmcDxe/Mmc.h | |
parent | 55b0a24ad29eb027eefe1ddd4c9aa466fded0b93 (diff) | |
download | edk2-platforms-4ca3c688a4f9042a954e5303f017893de7214d09.tar.xz |
EmbeddedPkg/MmcDxe: Moved all the 'Print*()' functions to MmcDebug.c
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14612 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmbeddedPkg/Universal/MmcDxe/Mmc.h')
-rw-r--r-- | EmbeddedPkg/Universal/MmcDxe/Mmc.h | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/EmbeddedPkg/Universal/MmcDxe/Mmc.h b/EmbeddedPkg/Universal/MmcDxe/Mmc.h index 0c51428e9e..9104f60ae0 100644 --- a/EmbeddedPkg/Universal/MmcDxe/Mmc.h +++ b/EmbeddedPkg/Universal/MmcDxe/Mmc.h @@ -1,7 +1,7 @@ /** @file
Main Header file for the MMC DXE driver
- Copyright (c) 2011, ARM Limited. All rights reserved.
+ Copyright (c) 2011-2013, ARM Limited. All rights reserved.
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -24,6 +24,7 @@ #include <Protocol/MmcHost.h>
#include <Library/UefiLib.h>
+#include <Library/DebugLib.h>
#define MMC_TRACE(txt) DEBUG((EFI_D_BLKIO, "MMC: " txt "\n"))
@@ -299,4 +300,29 @@ CheckCardsCallback ( IN VOID *Context
);
+VOID
+PrintCSD (
+ IN UINT32* Csd
+ );
+
+VOID
+PrintRCA (
+ IN UINT32 Rca
+ );
+
+VOID
+PrintOCR (
+ IN UINT32 Ocr
+ );
+
+VOID
+PrintResponseR1 (
+ IN UINT32 Response
+ );
+
+VOID
+PrintCID (
+ IN UINT32* Cid
+ );
+
#endif
|