From c16c235c9525882981477a067b1ca24ce26d4df5 Mon Sep 17 00:00:00 2001 From: able Date: Sat, 9 Sep 2023 02:34:29 -0500 Subject: [PATCH] Module fix --- kernel/src/arch/x86_64/graphics.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/kernel/src/arch/x86_64/graphics.rs b/kernel/src/arch/x86_64/graphics.rs index 8f7f333..18476ed 100644 --- a/kernel/src/arch/x86_64/graphics.rs +++ b/kernel/src/arch/x86_64/graphics.rs @@ -1,10 +1,8 @@ -use {limine::NonNullPtr}; - use { - crate::{kmain::DEVICE_TREE}, + crate::kmain::DEVICE_TREE, able_graphics_library::raw_pixel::Display, embedded_graphics::{pixelcolor::Rgb888, prelude::*}, - limine::{Framebuffer, FramebufferRequest}, + limine::{Framebuffer, FramebufferRequest, NonNullPtr}, spin::{Lazy, Mutex}, };