sw_apps:zynqmp_fsbl: Disabled debug prints in FSBL

Except banner all prints are disabled in FSBL.

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
Acked-by: Krishna Chaitanya Patakamuri <kpataka@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-08-14 17:08:53 +05:30 committed by Nava kishore Manne
parent 71d7769303
commit 4fb856ad83
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ extern "C" {
*/
#define FSBL_PRINT_VAL (1U)
#define FSBL_DEBUG_VAL (0U)
#define FSBL_DEBUG_INFO_VAL (1U)
#define FSBL_DEBUG_INFO_VAL (0U)
#define FSBL_DEBUG_DETAILED_VAL (0U)
/**

View file

@ -88,7 +88,7 @@ extern "C" {
#elif defined (FSBL_DEBUG)
#define XFsblDbgCurrentTypes ((DEBUG_GENERAL) | (DEBUG_PRINT_ALWAYS))
#elif defined (FSBL_PRINT)
#define XFsblDbgCurrentTypes (PRINT_ALWAYS)
#define XFsblDbgCurrentTypes (DEBUG_PRINT_ALWAYS)
#else
#define XFsblDbgCurrentTypes (0U)
#endif