summary refs log tree commit diff stats
path: root/rust/hw/core/tests/tests.rs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2025-09-08 12:50:02 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2025-09-17 19:00:58 +0200
commite4444d71e85b5f5ea8311eb59fea3e52f5fc5a14 (patch)
tree8f955e1324f0b039540c368db3537f10dcd8796a /rust/hw/core/tests/tests.rs
parentb0f6bf8a5b3b3a9dd4a11f792084d39a76b4b007 (diff)
downloadfocaccia-qemu-e4444d71e85b5f5ea8311eb59fea3e52f5fc5a14.tar.gz
focaccia-qemu-e4444d71e85b5f5ea8311eb59fea3e52f5fc5a14.zip
rust: re-export qemu macros from common/qom/hwcore
This is just a bit nicer.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Link: https://lore.kernel.org/r/20250827104147.717203-22-marcandre.lureau@redhat.com
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/hw/core/tests/tests.rs')
-rw-r--r--rust/hw/core/tests/tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/hw/core/tests/tests.rs b/rust/hw/core/tests/tests.rs
index 2f08b8f3bf..247d812866 100644
--- a/rust/hw/core/tests/tests.rs
+++ b/rust/hw/core/tests/tests.rs
@@ -17,7 +17,7 @@ pub const VMSTATE: VMStateDescription<DummyState> = VMStateDescriptionBuilder::<
     .build();
 
 #[repr(C)]
-#[derive(qemu_macros::Object, qemu_macros::Device)]
+#[derive(qom::Object, hwcore::Device)]
 pub struct DummyState {
     parent: ParentField<DeviceState>,
     #[property(rename = "migrate-clk", default = true)]
@@ -54,7 +54,7 @@ impl DeviceImpl for DummyState {
 }
 
 #[repr(C)]
-#[derive(qemu_macros::Object, qemu_macros::Device)]
+#[derive(qom::Object, hwcore::Device)]
 pub struct DummyChildState {
     parent: ParentField<DummyState>,
 }