Silence vmport unless DEBUG is enabled.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5030 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
c4cd07ef65
commit
61ada15d5f
@ -26,6 +26,8 @@
|
|||||||
#include "pc.h"
|
#include "pc.h"
|
||||||
#include "sysemu.h"
|
#include "sysemu.h"
|
||||||
|
|
||||||
|
//#define VMPORT_DEBUG
|
||||||
|
|
||||||
#define VMPORT_CMD_GETVERSION 0x0a
|
#define VMPORT_CMD_GETVERSION 0x0a
|
||||||
#define VMPORT_CMD_GETRAMSIZE 0x14
|
#define VMPORT_CMD_GETRAMSIZE 0x14
|
||||||
|
|
||||||
@ -65,7 +67,9 @@ static uint32_t vmport_ioport_read(void *opaque, uint32_t addr)
|
|||||||
return eax;
|
return eax;
|
||||||
if (!s->func[command])
|
if (!s->func[command])
|
||||||
{
|
{
|
||||||
printf("vmport: unknown command %x\n", command);
|
#ifdef VMPORT_DEBUG
|
||||||
|
fprintf(stderr, "vmport: unknown command %x\n", command);
|
||||||
|
#endif
|
||||||
return eax;
|
return eax;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user