summary refs log tree commit diff
path: root/x86_64/src
diff options
context:
space:
mode:
Diffstat (limited to 'x86_64/src')
-rw-r--r--x86_64/src/fdt.rs2
-rw-r--r--x86_64/src/lib.rs15
2 files changed, 0 insertions, 17 deletions
diff --git a/x86_64/src/fdt.rs b/x86_64/src/fdt.rs
index 8fc81ea..b072b9e 100644
--- a/x86_64/src/fdt.rs
+++ b/x86_64/src/fdt.rs
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-extern crate arch;
-
 use arch::fdt::{begin_node, end_node, finish_fdt, property_string, start_fdt, Error};
 use std::fs::File;
 use std::io::BufRead;
diff --git a/x86_64/src/lib.rs b/x86_64/src/lib.rs
index 3272086..997ed40 100644
--- a/x86_64/src/lib.rs
+++ b/x86_64/src/lib.rs
@@ -2,21 +2,6 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-extern crate arch;
-extern crate byteorder;
-extern crate data_model;
-extern crate devices;
-extern crate io_jail;
-extern crate kernel_cmdline;
-extern crate kernel_loader;
-extern crate kvm;
-extern crate kvm_sys;
-extern crate libc;
-extern crate remain;
-extern crate resources;
-extern crate sync;
-extern crate sys_util;
-
 mod fdt;
 
 const X86_64_FDT_MAX_SIZE: u64 = 0x200000;