aboutsummaryrefslogtreecommitdiff
path: root/hw/watchdog/wdt_i6300esb.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-09-10 13:44:47 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2022-09-29 11:40:28 +0200
commit5433af7697ba97531d97e16e721cfe8a90722198 (patch)
treec0249d5dd7c856e3b07cb80b064ffa7f729b77fd /hw/watchdog/wdt_i6300esb.c
parent7089977a24133b3b1dd0864f4138efe3b906af4b (diff)
downloadqemu-5433af7697ba97531d97e16e721cfe8a90722198.zip
qemu-5433af7697ba97531d97e16e721cfe8a90722198.tar.gz
qemu-5433af7697ba97531d97e16e721cfe8a90722198.tar.bz2
watchdog: remove -watchdog option
This was deprecated in 6.2 and is ready to go. It removes quite a bit of code that handled the registration of watchdog models. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/watchdog/wdt_i6300esb.c')
-rw-r--r--hw/watchdog/wdt_i6300esb.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/watchdog/wdt_i6300esb.c b/hw/watchdog/wdt_i6300esb.c
index f99a1c9..5693ec6 100644
--- a/hw/watchdog/wdt_i6300esb.c
+++ b/hw/watchdog/wdt_i6300esb.c
@@ -457,11 +457,6 @@ static void i6300esb_exit(PCIDevice *dev)
timer_free(d->timer);
}
-static WatchdogTimerModel model = {
- .wdt_name = "i6300esb",
- .wdt_description = "Intel 6300ESB",
-};
-
static void i6300esb_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
@@ -493,7 +488,6 @@ static const TypeInfo i6300esb_info = {
static void i6300esb_register_types(void)
{
- watchdog_add_model(&model);
type_register_static(&i6300esb_info);
}