mirror of https://github.com/xemu-project/xemu.git
hw/digic: Add trailing '\n' to qemu_log() calls
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180606152128.449-3-f4bug@amsat.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
c78d6a6466
commit
428d42ce23
|
@ -60,7 +60,7 @@ static uint64_t digic_uart_read(void *opaque, hwaddr addr,
|
||||||
default:
|
default:
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"digic-uart: read access to unknown register 0x"
|
"digic-uart: read access to unknown register 0x"
|
||||||
TARGET_FMT_plx, addr << 2);
|
TARGET_FMT_plx "\n", addr << 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -98,7 +98,7 @@ static void digic_uart_write(void *opaque, hwaddr addr, uint64_t value,
|
||||||
default:
|
default:
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"digic-uart: write access to unknown register 0x"
|
"digic-uart: write access to unknown register 0x"
|
||||||
TARGET_FMT_plx, addr << 2);
|
TARGET_FMT_plx "\n", addr << 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ static uint64_t digic_timer_read(void *opaque, hwaddr offset, unsigned size)
|
||||||
default:
|
default:
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"digic-timer: read access to unknown register 0x"
|
"digic-timer: read access to unknown register 0x"
|
||||||
TARGET_FMT_plx, offset);
|
TARGET_FMT_plx "\n", offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -109,7 +109,7 @@ static void digic_timer_write(void *opaque, hwaddr offset,
|
||||||
default:
|
default:
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"digic-timer: read access to unknown register 0x"
|
"digic-timer: read access to unknown register 0x"
|
||||||
TARGET_FMT_plx, offset);
|
TARGET_FMT_plx "\n", offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue