aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-08-06 14:48:40 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-08-08 12:03:24 +0100
commit1242b63dd1a4321acd2b02051f210a3488265709 (patch)
tree297663affd0f39c4c5246243924baec72213c564 /tools/firmware
parent01d8e90c60599fedf29ebbb8a478ac18f64f4e74 (diff)
downloadxen-1242b63dd1a4321acd2b02051f210a3488265709.tar.gz
xen-1242b63dd1a4321acd2b02051f210a3488265709.tar.bz2
xen-1242b63dd1a4321acd2b02051f210a3488265709.zip
rombios/debug: Reduce verbosity of rombios
Default builds of Qemu have the Bochs debug port logging #ifdef'd out, so remove all the completely wasted VMExits Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/firmware')
-rw-r--r--tools/firmware/rombios/rombios.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/firmware/rombios/rombios.h b/tools/firmware/rombios/rombios.h
index 93d12a489f..0308a18f29 100644
--- a/tools/firmware/rombios/rombios.h
+++ b/tools/firmware/rombios/rombios.h
@@ -48,10 +48,11 @@
// per-device basis. Debug info are sent only in debug mode
#if DEBUG_ROMBIOS
# define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
+# define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
#else
# define BX_DEBUG(format, p...)
+# define BX_INFO(format, p...)
#endif
-#define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
#define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p)
#define ACPI_DATA_SIZE 0x00010000L