mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
riscv: hw: Change to use qemu_log_mask(LOG_GUEST_ERROR, ...) instead
Replace the call to hw_error() with qemu_log_mask(LOG_GUEST_ERROR,...) in various sifive models. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
This commit is contained in:
parent
9f79638ec5
commit
a2360c854f
3 changed files with 13 additions and 9 deletions
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qemu/log.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-fe.h"
|
||||
|
@ -95,8 +96,8 @@ uart_read(void *opaque, hwaddr addr, unsigned int size)
|
|||
return s->div;
|
||||
}
|
||||
|
||||
hw_error("%s: bad read: addr=0x%x\n",
|
||||
__func__, (int)addr);
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "%s: bad read: addr=0x%x\n",
|
||||
__func__, (int)addr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -127,8 +128,8 @@ uart_write(void *opaque, hwaddr addr,
|
|||
s->div = val64;
|
||||
return;
|
||||
}
|
||||
hw_error("%s: bad write: addr=0x%x v=0x%x\n",
|
||||
__func__, (int)addr, (int)value);
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "%s: bad write: addr=0x%x v=0x%x\n",
|
||||
__func__, (int)addr, (int)value);
|
||||
}
|
||||
|
||||
static const MemoryRegionOps uart_ops = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue