On 10/27/21 15:46, BALATON Zoltan wrote: > Signed-off-by: BALATON Zoltan <bala...@eik.bme.hu> > Reviewed-by: Richard Henderson <richard.hender...@linaro.org> > --- > hw/char/sh_serial.c | 7 ++++--- > hw/sh4/sh7750.c | 13 ++++++------- > 2 files changed, 10 insertions(+), 10 deletions(-)
> case SH7750_GPIOIC_A7: > s->gpioic = mem_value; > if (mem_value != 0) { > - fprintf(stderr, "I/O interrupts not implemented\n"); > + qemu_log_mask(LOG_UNIMP, "I/O interrupts not implemented\n"); > abort(); This change is annoying. Before you'd get an error message and the abort signal. Now if you don't use "-d unimp" you get an abort without explanation. Can we use error_report() instead? > } > return; >