target/arm: Add trailing '\n' to qemu_log() calls

Backports commit 0221c8fdf2321137b34bd4dbb2557d0725739822 from qemu
This commit is contained in:
Philippe Mathieu-Daudé 2018-06-08 19:24:28 -04:00 committed by Lioncash
parent 666130cb41
commit 5992214b3b
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -4007,7 +4007,7 @@ void hw_breakpoint_update(ARMCPU *cpu, int n)
case 4: /* unlinked address mismatch (reserved if AArch64) */
case 5: /* linked address mismatch (reserved if AArch64) */
qemu_log_mask(LOG_UNIMP,
"arm: address mismatch breakpoint types not implemented");
"arm: address mismatch breakpoint types not implemented\n");
return;
case 0: /* unlinked address match */
case 1: /* linked address match */
@ -4041,7 +4041,7 @@ void hw_breakpoint_update(ARMCPU *cpu, int n)
case 8: /* unlinked VMID match (reserved if no EL2) */
case 10: /* unlinked context ID and VMID match (reserved if no EL2) */
qemu_log_mask(LOG_UNIMP,
"arm: unlinked context breakpoint types not implemented");
"arm: unlinked context breakpoint types not implemented\n");
return;
case 9: /* linked VMID match (reserved if no EL2) */
case 11: /* linked context ID and VMID match (reserved if no EL2) */