forked from Bananymous/banan-os
Kernel: Remove accidentally commited debug prints
This commit is contained in:
@@ -540,8 +540,6 @@ namespace Kernel
|
|||||||
// this is a hack to allow direct GSI reservation
|
// this is a hack to allow direct GSI reservation
|
||||||
BAN::ErrorOr<uint8_t> APIC::reserve_gsi(uint32_t gsi)
|
BAN::ErrorOr<uint8_t> APIC::reserve_gsi(uint32_t gsi)
|
||||||
{
|
{
|
||||||
dwarnln("TRYING TO RESERVE GSI {}", gsi);
|
|
||||||
|
|
||||||
size_t irq = 0;
|
size_t irq = 0;
|
||||||
for (; irq < 0x100; irq++)
|
for (; irq < 0x100; irq++)
|
||||||
if (m_irq_overrides[irq] == gsi)
|
if (m_irq_overrides[irq] == gsi)
|
||||||
@@ -553,8 +551,6 @@ namespace Kernel
|
|||||||
return BAN::Error::from_errno(ENOTSUP);
|
return BAN::Error::from_errno(ENOTSUP);
|
||||||
}
|
}
|
||||||
|
|
||||||
dwarnln(" matches IRQ {}", irq);
|
|
||||||
|
|
||||||
TRY(reserve_irq(irq));
|
TRY(reserve_irq(irq));
|
||||||
|
|
||||||
return irq;
|
return irq;
|
||||||
|
|||||||
Reference in New Issue
Block a user