From patchwork Sun Jun 13 12:15:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v4,03/13] hpet: Silence warning on write to running main counter From: Jan Kiszka X-Patchwork-Id: 55416 Message-Id: <9fe7afde72462d56038470e10ce29c0a9c74435b.1276431335.git.jan.kiszka@web.de> To: Anthony Liguori , qemu-devel@nongnu.org Cc: blue Swirl , Jan Kiszka , Paul Brook , Gleb Natapov , Juan Quintela Date: Sun, 13 Jun 2010 14:15:36 +0200 From: Jan Kiszka Setting the main counter while the HPET is enabled may not be a good idea of the guest, but it is supported and should, thus, not spam the host console with warnings. Signed-off-by: Jan Kiszka --- hw/hpet.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/hpet.c b/hw/hpet.c index 2836fb0..bcb160b 100644 --- a/hw/hpet.c +++ b/hw/hpet.c @@ -520,7 +520,7 @@ static void hpet_ram_writel(void *opaque, target_phys_addr_t addr, break; case HPET_COUNTER: if (hpet_enabled()) { - printf("qemu: Writing counter while HPET enabled!\n"); + DPRINTF("qemu: Writing counter while HPET enabled!\n"); } s->hpet_counter = (s->hpet_counter & 0xffffffff00000000ULL) | value; @@ -529,7 +529,7 @@ static void hpet_ram_writel(void *opaque, target_phys_addr_t addr, break; case HPET_COUNTER + 4: if (hpet_enabled()) { - printf("qemu: Writing counter while HPET enabled!\n"); + DPRINTF("qemu: Writing counter while HPET enabled!\n"); } s->hpet_counter = (s->hpet_counter & 0xffffffffULL) | (((uint64_t)value) << 32);