mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-14 17:07:24 +00:00
pflash_cfi01: qemu_log_mask "unimplemented" msg
This printf is informing the user of unimplemented functionality. It should be re-directed to qemu_log(LOG_UNIMP, ...) accordingly. Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
e103129b1b
commit
d96fc51cc6
@ -438,9 +438,9 @@ static void pflash_write(pflash_t *pfl, hwaddr offset,
|
||||
return;
|
||||
|
||||
error_flash:
|
||||
printf("%s: Unimplemented flash cmd sequence "
|
||||
"(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)\n",
|
||||
__func__, offset, pfl->wcycle, pfl->cmd, value);
|
||||
qemu_log_mask(LOG_UNIMP, "%s: Unimplemented flash cmd sequence "
|
||||
"(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)"
|
||||
"\n", __func__, offset, pfl->wcycle, pfl->cmd, value);
|
||||
|
||||
reset_flash:
|
||||
memory_region_rom_device_set_readable(&pfl->mem, true);
|
||||
|
Loading…
x
Reference in New Issue
Block a user