[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [PATCH 07/11] stellaris: Add trailing '\n' to qemu_log() call
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-arm] [PATCH 07/11] stellaris: Add trailing '\n' to qemu_log() calls |
Date: |
Wed, 6 Jun 2018 12:21:24 -0300 |
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
hw/arm/stellaris.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c
index e886f54976..502a20842c 100644
--- a/hw/arm/stellaris.c
+++ b/hw/arm/stellaris.c
@@ -203,11 +203,11 @@ static uint64_t gptm_read(void *opaque, hwaddr offset,
return s->rtc;
}
qemu_log_mask(LOG_UNIMP,
- "GPTM: read of TAR but timer read not supported");
+ "GPTM: read of TAR but timer read not supported\n");
return 0;
case 0x4c: /* TBR */
qemu_log_mask(LOG_UNIMP,
- "GPTM: read of TBR but timer read not supported");
+ "GPTM: read of TBR but timer read not supported\n");
return 0;
default:
qemu_log_mask(LOG_GUEST_ERROR,
@@ -836,11 +836,12 @@ static void stellaris_i2c_write(void *opaque, hwaddr
offset,
break;
case 0x20: /* MCR */
if (value & 1) {
- qemu_log_mask(LOG_UNIMP, "stellaris_i2c: Loopback not
implemented");
+ qemu_log_mask(LOG_UNIMP,
+ "stellaris_i2c: Loopback not implemented\n");
}
if (value & 0x20) {
qemu_log_mask(LOG_UNIMP,
- "stellaris_i2c: Slave mode not implemented");
+ "stellaris_i2c: Slave mode not implemented\n");
}
s->mcr = value & 0x31;
break;
@@ -1124,7 +1125,7 @@ static void stellaris_adc_write(void *opaque, hwaddr
offset,
s->sspri = value;
break;
case 0x28: /* PSSI */
- qemu_log_mask(LOG_UNIMP, "ADC: sample initiate unimplemented");
+ qemu_log_mask(LOG_UNIMP, "ADC: sample initiate unimplemented\n");
break;
case 0x30: /* SAC */
s->sac = value;
--
2.17.1
- [Qemu-arm] [PATCH 00/11] misc: Add trailing '\n' to qemu_log() calls, Philippe Mathieu-Daudé, 2018/06/06
- [Qemu-arm] [PATCH 02/11] hw/digic: Add trailing '\n' to qemu_log() calls, Philippe Mathieu-Daudé, 2018/06/06
- [Qemu-arm] [PATCH 03/11] xilinx-dp: Add trailing '\n' to qemu_log() call, Philippe Mathieu-Daudé, 2018/06/06
- [Qemu-arm] [PATCH 08/11] target/arm: Add trailing '\n' to qemu_log() calls, Philippe Mathieu-Daudé, 2018/06/06
- [Qemu-arm] [PATCH 07/11] stellaris: Add trailing '\n' to qemu_log() calls,
Philippe Mathieu-Daudé <=
- Re: [Qemu-arm] [Qemu-devel] [PATCH 00/11] misc: Add trailing '\n' to qemu_log() calls, John Snow, 2018/06/06
- Re: [Qemu-arm] [PATCH 00/11] misc: Add trailing '\n' to qemu_log() calls, Peter Maydell, 2018/06/08