diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-05-26 08:22:51 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-05-28 11:38:57 +0200 |
commit | 00a946a3cb2568033f8f5c1a7769c5239a429c94 (patch) | |
tree | b86879aa6b82f354ce743314b21e3df44d9043c5 /hw | |
parent | b3caeaf2c863bbf0e57c789d2ee6923f7d3bfe4f (diff) | |
download | qemu-00a946a3cb2568033f8f5c1a7769c5239a429c94.zip qemu-00a946a3cb2568033f8f5c1a7769c5239a429c94.tar.gz qemu-00a946a3cb2568033f8f5c1a7769c5239a429c94.tar.bz2 |
hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP)
Replace fprintf() call by qemu_log_mask(LOG_UNIMP), which is
disabled by default. This avoid flooding the terminal when
fuzzing the device.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20200526062252.19852-14-f4bug@amsat.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/display/omap_dss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/omap_dss.c b/hw/display/omap_dss.c index 32dc0d6..21fde58 100644 --- a/hw/display/omap_dss.c +++ b/hw/display/omap_dss.c @@ -619,7 +619,7 @@ static void omap_rfbi_transfer_start(struct omap_dss_s *s) if (s->rfbi.control & (1 << 1)) { /* BYPASS */ /* TODO: in non-Bypass mode we probably need to just assert the * DRQ and wait for DMA to write the pixels. */ - fprintf(stderr, "%s: Bypass mode unimplemented\n", __func__); + qemu_log_mask(LOG_UNIMP, "%s: Bypass mode unimplemented\n", __func__); return; } |