diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-29 14:15:27 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-19 19:36:37 +0100 |
| commit | 4aed0296b307b6e2e3b7d38ee6c5204cf2dfe1ca (patch) | |
| tree | b71d0ba5edc20818a6816b6e7530649a3763443f /rust/qemu-api/src/lib.rs | |
| parent | cb36da9bd84076470f36da56542e85a2436e3d95 (diff) | |
| download | focaccia-qemu-4aed0296b307b6e2e3b7d38ee6c5204cf2dfe1ca.tar.gz focaccia-qemu-4aed0296b307b6e2e3b7d38ee6c5204cf2dfe1ca.zip | |
rust: rename qemu-api modules to follow C code a bit more
A full match would mean calling them qom::object and hw::core::qdev. For now, keep the names shorter but still a bit easier to find. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api/src/lib.rs')
| -rw-r--r-- | rust/qemu-api/src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rust/qemu-api/src/lib.rs b/rust/qemu-api/src/lib.rs index 9e007e1635..124bece044 100644 --- a/rust/qemu-api/src/lib.rs +++ b/rust/qemu-api/src/lib.rs @@ -15,10 +15,11 @@ pub mod prelude; pub mod bitops; pub mod c_str; pub mod cell; -pub mod definitions; -pub mod device_class; pub mod irq; +pub mod module; pub mod offset_of; +pub mod qdev; +pub mod qom; pub mod sysbus; pub mod vmstate; pub mod zeroable; |