Skip to content

Commit

Permalink
Merge branch 'hermit-os:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
cagatay-y authored Oct 4, 2023
2 parents 9a0ed35 + 315f58f commit 45cc1b2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 27 deletions.
30 changes: 8 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ x86_64 = "0.14"
aarch64 = { version = "0.0", default-features = false }
arm-gic = { version = "0.1" }
hermit-dtb = { version = "0.1" }
tock-registers = { version = "0.8", default-features = false }

[dev-dependencies]
float-cmp = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2023-09-15"
channel = "nightly-2023-10-01"
components = [
"llvm-tools",
"rust-src",
Expand Down
1 change: 0 additions & 1 deletion src/arch/aarch64/kernel/interrupts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use arm_gic::gicv3::{GicV3, IntId, Trigger};
use hashbrown::HashMap;
use hermit_dtb::Dtb;
use hermit_sync::{InterruptSpinMutex, InterruptTicketMutex, OnceCell};
use tock_registers::interfaces::Readable;

use crate::arch::aarch64::kernel::boot_info;
use crate::arch::aarch64::kernel::core_local::increment_irq_counter;
Expand Down
3 changes: 1 addition & 2 deletions src/arch/aarch64/kernel/processor.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
use core::arch::asm;
use core::{fmt, str};

use aarch64::regs::CNTFRQ_EL0;
use aarch64::regs::{Readable, CNTFRQ_EL0};
use hermit_dtb::Dtb;
use hermit_sync::{without_interrupts, Lazy};
use qemu_exit::QEMUExit;
use tock_registers::interfaces::Readable;

use crate::arch::aarch64::kernel::boot_info;
use crate::env;
Expand Down

0 comments on commit 45cc1b2

Please sign in to comment.