diff options
author | Peng Hao | 2018-12-08 08:18:31 +0100 |
---|---|---|
committer | Paolo Bonzini | 2019-01-11 15:46:55 +0100 |
commit | 7d2fcebbdc853d722852849ea61dc23662114487 (patch) | |
tree | d4591efc95aa1868fb5edc2bda5a71979129d3b8 /hw/watchdog | |
parent | checkpatch: warn about qemu/queue.h head structs that are not typedef-ed (diff) | |
download | qemu-7d2fcebbdc853d722852849ea61dc23662114487.tar.gz qemu-7d2fcebbdc853d722852849ea61dc23662114487.tar.xz qemu-7d2fcebbdc853d722852849ea61dc23662114487.zip |
hw/watchdog/wdt_i6300esb: remove a unnecessary comment
The registered memory region of i6300esb is not suitable for coalesced
mmio, because a write for the region may trigger an immediate action
and can't be delayed.
Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
Message-Id: <1544253511-82742-1-git-send-email-peng.hao2@zte.com.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/watchdog')
-rw-r--r-- | hw/watchdog/wdt_i6300esb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/watchdog/wdt_i6300esb.c b/hw/watchdog/wdt_i6300esb.c index 7b59469888..1c6eddf86a 100644 --- a/hw/watchdog/wdt_i6300esb.c +++ b/hw/watchdog/wdt_i6300esb.c @@ -449,7 +449,6 @@ static void i6300esb_realize(PCIDevice *dev, Error **errp) memory_region_init_io(&d->io_mem, OBJECT(d), &i6300esb_ops, d, "i6300esb", 0x10); pci_register_bar(&d->dev, 0, 0, &d->io_mem); - /* qemu_register_coalesced_mmio (addr, 0x10); ? */ } static void i6300esb_exit(PCIDevice *dev) |