summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2020-04-23 13:31:44 -0700
committerCommit Bot <commit-bot@chromium.org>2020-04-26 00:15:36 +0000
commite1952dd7d40fe45804cedcafc43c87a5d064b0c5 (patch)
tree4cfef091cad027acb0fbe3177bc28fee3a58e7ed /resources
parentd5f47a98657034b0ddc332d5e0b700e38155c160 (diff)
downloadcrosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar.gz
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar.bz2
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar.lz
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar.xz
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.tar.zst
crosvm-e1952dd7d40fe45804cedcafc43c87a5d064b0c5.zip
Remove redundant single-component imports
Fix clippy 1.43.0 clippy::single-component-path-imports warnings.

BUG=None
TEST=bin/clippy

Change-Id: I3f4f54138bedce16dc1ca937bb8bc00a94594f69
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2163203
Reviewed-by: Zach Reizner <zachr@chromium.org>
Tested-by: Daniel Verkamp <dverkamp@chromium.org>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Diffstat (limited to 'resources')
-rw-r--r--resources/src/gpu_allocator.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/resources/src/gpu_allocator.rs b/resources/src/gpu_allocator.rs
index 478d0d4..cbf21a2 100644
--- a/resources/src/gpu_allocator.rs
+++ b/resources/src/gpu_allocator.rs
@@ -8,10 +8,7 @@ use std::fs::File;
 #[cfg(feature = "wl-dmabuf")]
 use libc::EINVAL;
 
-#[cfg(feature = "wl-dmabuf")]
-use gpu_buffer;
 use msg_socket::MsgOnSocket;
-use sys_util;
 
 #[allow(dead_code)]
 #[derive(Debug, Eq, PartialEq)]