mirror of
https://github.com/RGBCube/serenity
synced 2025-07-07 05:57:35 +00:00
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
019c9eb749
commit
4e8fd0216b
7 changed files with 51 additions and 13 deletions
|
@ -57,7 +57,7 @@ void MultiProcessorParser::parse_floating_pointer_data()
|
|||
{
|
||||
auto floating_pointer = map_typed<MultiProcessor::FloatingPointer>(m_floating_pointer);
|
||||
m_configuration_table = PhysicalAddress(floating_pointer->physical_address_ptr);
|
||||
dbg() << "Features " << floating_pointer->feature_info[0] << ", IMCR? " << (floating_pointer->feature_info[0] & (1 << 7));
|
||||
dbgln("Features {}, IMCR? {}", floating_pointer->feature_info[0], (floating_pointer->feature_info[0] & (1 << 7)));
|
||||
}
|
||||
|
||||
void MultiProcessorParser::parse_configuration_table()
|
||||
|
@ -126,7 +126,7 @@ Vector<u8> MultiProcessorParser::get_pci_bus_ids() const
|
|||
|
||||
Vector<PCIInterruptOverrideMetadata> MultiProcessorParser::get_pci_interrupt_redirections()
|
||||
{
|
||||
dbg() << "MultiProcessor: Get PCI IOAPIC redirections";
|
||||
dbgln("MultiProcessor: Get PCI IOAPIC redirections");
|
||||
Vector<PCIInterruptOverrideMetadata> overrides;
|
||||
auto pci_bus_ids = get_pci_bus_ids();
|
||||
for (auto& entry : m_io_interrupt_assignment_entries) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue