summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-12-29 19:32:25 -0700
committerSimon Glass <sjg@chromium.org>2015-01-23 17:24:15 -0700
commite78dd86998298df6d6108b1bc070d934bd805873 (patch)
tree91c04a42c9e632e2ccf8eeea1d872d5bb06c3e03
parentbdc88d4eb31e2bc84afb427c216c79e87a4233ef (diff)
downloadblackbird-obmc-uboot-e78dd86998298df6d6108b1bc070d934bd805873.tar.gz
blackbird-obmc-uboot-e78dd86998298df6d6108b1bc070d934bd805873.zip
bios_emulator: Don't display error when emulator terminates
As it turns out this is a normal condition, so suppress the error. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--drivers/bios_emulator/x86emu/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bios_emulator/x86emu/ops.c b/drivers/bios_emulator/x86emu/ops.c
index 2bb5e2d9d5..5752fee1cd 100644
--- a/drivers/bios_emulator/x86emu/ops.c
+++ b/drivers/bios_emulator/x86emu/ops.c
@@ -179,7 +179,7 @@ void x86emuOp_illegal_op(
{
START_OF_INSTR();
if (M.x86.R_SP != 0) {
- ERR_PRINTF("ILLEGAL X86 OPCODE\n");
+ DB(printf("ILLEGAL X86 OPCODE\n"));
TRACE_REGS();
DB( printk("%04x:%04x: %02X ILLEGAL X86 OPCODE!\n",
M.x86.R_CS, M.x86.R_IP-1,op1));
OpenPOWER on IntegriCloud