diff options
| author | Paolo Bonzini | 2015-11-13 13:24:26 +0100 |
|---|---|---|
| committer | Paolo Bonzini | 2015-12-17 17:33:47 +0100 |
| commit | 79e8ed35977f9976b4df6f9b2550f46db77939ef (patch) | |
| tree | b0aaba11e6863a9e793b54cbe77156b545979b36 /hw | |
| parent | alpha: convert "naked" qemu_log to tracepoint (diff) | |
| download | qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.tar.gz qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.tar.xz qemu-79e8ed35977f9976b4df6f9b2550f46db77939ef.zip | |
cris: avoid "naked" qemu_log
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/char/etraxfs_ser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/char/etraxfs_ser.c b/hw/char/etraxfs_ser.c index 562021e28b..d4d875e7a6 100644 --- a/hw/char/etraxfs_ser.c +++ b/hw/char/etraxfs_ser.c @@ -165,7 +165,7 @@ static void serial_receive(void *opaque, const uint8_t *buf, int size) /* Got a byte. */ if (s->rx_fifo_len >= 16) { - qemu_log("WARNING: UART dropped char.\n"); + D(qemu_log("WARNING: UART dropped char.\n")); return; } |
