We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f1581d commit 90c95e0Copy full SHA for 90c95e0
src/platform/interrupt.rs
@@ -58,17 +58,13 @@ impl<A: Allocator + Clone> InterruptModel<A> {
58
return Self::from_apic_model_in(madt.get(), allocator);
59
}
60
61
- MadtEntry::IoSapic(_) | MadtEntry::LocalSapic(_) | MadtEntry::PlatformInterruptSource(_) => {
62
- unimplemented!();
63
- }
+ MadtEntry::IoSapic(_) | MadtEntry::LocalSapic(_) | MadtEntry::PlatformInterruptSource(_) => {}
64
65
MadtEntry::Gicc(_)
66
| MadtEntry::Gicd(_)
67
| MadtEntry::GicMsiFrame(_)
68
| MadtEntry::GicRedistributor(_)
69
- | MadtEntry::GicInterruptTranslationService(_) => {
70
71
+ | MadtEntry::GicInterruptTranslationService(_) => {}
72
73
MadtEntry::NmiSource(_) => (),
74
MadtEntry::MultiprocessorWakeup(_) => (),
0 commit comments