Kernel: Remove accidentally commited debug prints

This commit is contained in:
Bananymous 2025-07-02 23:09:57 +03:00
parent 51fd7a607d
commit e1319a06f2
1 changed files with 0 additions and 4 deletions

View File

@ -540,8 +540,6 @@ namespace Kernel
// this is a hack to allow direct GSI reservation
BAN::ErrorOr<uint8_t> APIC::reserve_gsi(uint32_t gsi)
{
dwarnln("TRYING TO RESERVE GSI {}", gsi);
size_t irq = 0;
for (; irq < 0x100; irq++)
if (m_irq_overrides[irq] == gsi)
@ -553,8 +551,6 @@ namespace Kernel
return BAN::Error::from_errno(ENOTSUP);
}
dwarnln(" matches IRQ {}", irq);
TRY(reserve_irq(irq));
return irq;