sweep unused imports

This commit is contained in:
Cadey Ratio 2019-10-23 20:36:52 -04:00
parent ee4dd3e2f2
commit 50955547b9
2 changed files with 0 additions and 5 deletions

View File

@ -1,6 +1,5 @@
use alloc::alloc::{GlobalAlloc, Layout};
use bootloader::BootInfo;
use bootloader::bootinfo::{MemoryMap, MemoryRegionType};
use core::ptr::null_mut;
use x86_64::{
structures::paging::{

View File

@ -14,10 +14,6 @@ use xe_os::println;
entry_point!(kernel_main);
fn kernel_main(boot_info: &'static BootInfo) -> ! {
use x86_64::VirtAddr;
use xe_os::allocator;
use xe_os::memory::{self, BootInfoFrameAllocator};
xe_os::init(&boot_info);
println!("Hello World{}", "!");