Skip to content

Commit c1e1452

Browse files
Jing Liujiangliu
Jing Liu
authored andcommitted
Remove vm-memory dependency
Use u64 for guest memory address type since this can make vm-device independent from on vm-memory. Signed-off-by: Jing Liu <[email protected]>
1 parent c2cafa6 commit c1e1452

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ repository = "https://github.com/rust-vmm/vm-device"
66
license = "Apache-2.0"
77

88
[dependencies]
9-
vm-memory = { git = "https://github.com/rust-vmm/vm-memory" }

src/lib.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33

44
//! rust-vmm device model.
55
6-
extern crate vm_memory;
7-
8-
use vm_memory::GuestAddress;
9-
106
pub mod resources;
117

128
/// IO Addresses.
@@ -16,7 +12,7 @@ pub enum IoAddress {
1612
Pio(u16),
1713

1814
/// Memory mapped I/O address.
19-
Mmio(GuestAddress),
15+
Mmio(u64),
2016
}
2117

2218
/// Device IO trait.

0 commit comments

Comments
 (0)