Skip to content

Commit 3a2d6e4

Browse files
committed
fix: fix IrqType cannot be formatted with the default formatter
1 parent ba483f6 commit 3a2d6e4

File tree

1 file changed

+1
-1
lines changed
  • platforms/axplat-loongarch64-qemu-virt/src

1 file changed

+1
-1
lines changed

platforms/axplat-loongarch64-qemu-virt/src/irq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ impl IrqIf for IrqIfImpl {
159159
let vector = status.trailing_zeros() as usize;
160160
status &= !(1 << vector);
161161
if !IRQ_HANDLER_TABLE.handle(irq.as_usize()) {
162-
warn!("Unhandled IRQ {}", irq);
162+
warn!("Unhandled IRQ {irq:?}");
163163
}
164164
}
165165
}

0 commit comments

Comments
 (0)