We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cafa6 commit c1e1452Copy full SHA for c1e1452
Cargo.toml
@@ -6,4 +6,3 @@ repository = "https://github.com/rust-vmm/vm-device"
6
license = "Apache-2.0"
7
8
[dependencies]
9
-vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }
src/lib.rs
@@ -3,10 +3,6 @@
3
4
//! rust-vmm device model.
5
-extern crate vm_memory;
-
-use vm_memory::GuestAddress;
10
pub mod resources;
11
12
/// IO Addresses.
@@ -16,7 +12,7 @@ pub enum IoAddress {
16
Pio(u16),
17
13
18
14
/// Memory mapped I/O address.
19
- Mmio(GuestAddress),
15
+ Mmio(u64),
20
}
21
22
/// Device IO trait.
0 commit comments