summary refs log tree commit diff
path: root/src/linux.rs
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-03-11 19:52:43 +0000
committerAlyssa Ross <hi@alyssa.is>2020-06-15 09:36:20 +0000
commit4140a7d1871bae2d73a1fe6955af75ac07e7e86f (patch)
tree6b6e468f31b3c0309674709054e1bccb29382144 /src/linux.rs
parent0444d328a6d7198e59aca9f8dd2e2d91501f9bac (diff)
downloadcrosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar.gz
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar.bz2
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar.lz
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar.xz
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.tar.zst
crosvm-4140a7d1871bae2d73a1fe6955af75ac07e7e86f.zip
the great renaming
Diffstat (limited to 'src/linux.rs')
-rw-r--r--src/linux.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux.rs b/src/linux.rs
index d332780..286d387 100644
--- a/src/linux.rs
+++ b/src/linux.rs
@@ -762,7 +762,7 @@ fn create_wayland_device(
         .collect::<Option<Vec<_>>>()
         .ok_or(Error::InvalidWaylandPath)?;
 
-    let dev = virtio::Wl::new(cfg.wayland_socket_paths.clone(), socket, resource_bridge)
+    let dev = virtio::Controller::new(cfg.wayland_socket_paths.clone(), socket, resource_bridge)
         .map_err(Error::WaylandDeviceNew)?;
 
     let jail = match simple_jail(&cfg, "wl_device")? {