Skip to content

Commit

Permalink
fix(riscv64): remove dbg! invocation
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Apr 19, 2024
1 parent 6952f40 commit 5123790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arch/riscv64/kernel/core_local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl CoreLocal {
asm!("mv {}, gp", out(reg) raw);
debug_assert_eq!(raw, ptr::null());

let core_id = dbg!(CPU_ONLINE.load(Ordering::Relaxed));
let core_id = CPU_ONLINE.load(Ordering::Relaxed);

let this = Self {
core_id,
Expand Down

0 comments on commit 5123790

Please sign in to comment.