diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-25 14:29:56 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-05 14:18:16 +0100 |
| commit | 113c66885280bb20296969d780be54fbd42213ad (patch) | |
| tree | 0c51a3a017ff05a36c22bc4d6c3cd1fec259195c | |
| parent | 0a65e4124ad9c6dab594d738cac31fd32d19402c (diff) | |
| download | focaccia-qemu-113c66885280bb20296969d780be54fbd42213ad.tar.gz focaccia-qemu-113c66885280bb20296969d780be54fbd42213ad.zip | |
rust/pl011: fix default value for migrate-clock
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | rust/hw/char/pl011/src/device_class.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rust/hw/char/pl011/src/device_class.rs b/rust/hw/char/pl011/src/device_class.rs index 08c846aa48..9282dc4d15 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 ), } |