Don't panic in LoongArch64 VirtIO MMIO probe

This commit is contained in:
Ruihan Li 2025-12-30 17:05:37 +08:00 committed by Tate, Hongliang Tian
parent d18b1dc624
commit eb83a38d12
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
// SPDX-License-Identifier: MPL-2.0
// TODO: Add `MappedIrqLine` support for Loongarch.
// TODO: Add `MappedIrqLine` support for LoongArch.
pub(super) use ostd::irq::IrqLine as MappedIrqLine;
pub(super) fn probe_for_device() {
unimplemented!()
// TODO: Probe virtio devices on the MMIO bus in LoongArch.
// Then, register them by calling `super::try_register_mmio_device`.
}