From: Paolo Bonzini Date: Fri, 25 Oct 2024 12:29:56 +0000 (+0200) Subject: rust/pl011: fix default value for migrate-clock X-Git-Tag: v9.2.0-rc0~9^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=113c66885280bb20296969d780be54fbd42213ad;p=thirdparty%2Fqemu.git rust/pl011: fix default value for migrate-clock Signed-off-by: Paolo Bonzini --- diff --git a/rust/hw/char/pl011/src/device_class.rs b/rust/hw/char/pl011/src/device_class.rs index 08c846aa482..9282dc4d151 100644 --- a/rust/hw/char/pl011/src/device_class.rs +++ b/rust/hw/char/pl011/src/device_class.rs @@ -29,7 +29,8 @@ qemu_api::declare_properties! { PL011State, migrate_clock, unsafe { &qdev_prop_bool }, - bool + bool, + default = true ), }