The Intel 6300 Enterprise SouthBridge is a south bridge for a more or less obscure embedded Intel system; however, the i6300esb watchdog device we implement in QEMU is a virtual watchdog device that should work well on any PCI-based machine, is well supported by Linux guests, and used in many examples on how to set up a virtual watchdog.
Let's use "virtual i6300ESB" in the description to make clear that this device will work just fine on non-Intel platforms. Signed-off-by: Cornelia Huck <coh...@redhat.com> --- hw/watchdog/wdt_i6300esb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/watchdog/wdt_i6300esb.c b/hw/watchdog/wdt_i6300esb.c index bb8a2766b69b..5e5d8c48cfd7 100644 --- a/hw/watchdog/wdt_i6300esb.c +++ b/hw/watchdog/wdt_i6300esb.c @@ -472,7 +472,7 @@ static void i6300esb_class_init(ObjectClass *klass, const void *data) device_class_set_legacy_reset(dc, i6300esb_reset); dc->vmsd = &vmstate_i6300esb; set_bit(DEVICE_CATEGORY_WATCHDOG, dc->categories); - dc->desc = "Intel 6300ESB"; + dc->desc = "virtual i6300ESB"; } static const TypeInfo i6300esb_info = { -- 2.49.0