mirror of https://github.com/xqemu/xqemu.git
ppc405_boards: Disable debug output
Also move one stray debug output into an #ifdef. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
daf285b606
commit
bf2ed917d7
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
#define USE_FLASH_BIOS
|
#define USE_FLASH_BIOS
|
||||||
|
|
||||||
#define DEBUG_BOARD_INIT
|
//#define DEBUG_BOARD_INIT
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* PPC405EP reference board (IBM) */
|
/* PPC405EP reference board (IBM) */
|
||||||
|
@ -353,9 +353,9 @@ static void ref405ep_init(QEMUMachineInitArgs *args)
|
||||||
bdloc = 0;
|
bdloc = 0;
|
||||||
}
|
}
|
||||||
#ifdef DEBUG_BOARD_INIT
|
#ifdef DEBUG_BOARD_INIT
|
||||||
|
printf("bdloc " RAM_ADDR_FMT "\n", bdloc);
|
||||||
printf("%s: Done\n", __func__);
|
printf("%s: Done\n", __func__);
|
||||||
#endif
|
#endif
|
||||||
printf("bdloc " RAM_ADDR_FMT "\n", bdloc);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static QEMUMachine ref405ep_machine = {
|
static QEMUMachine ref405ep_machine = {
|
||||||
|
|
Loading…
Reference in New Issue