mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-23 13:57:04 +00:00
Kernel: Fix typos in PCI access boot message
This commit is contained in:
@@ -38,7 +38,7 @@ void IOAccess::initialize()
|
||||
|
||||
IOAccess::IOAccess()
|
||||
{
|
||||
klog() << "PCI: Using IO Mechanism for PCI Configuartion Space Access";
|
||||
klog() << "PCI: Using I/O instructions for PCI configuration space access";
|
||||
}
|
||||
|
||||
u8 IOAccess::read8_field(Address address, u32 field)
|
||||
|
||||
@@ -77,7 +77,7 @@ MMIOAccess::MMIOAccess(PhysicalAddress p_mcfg)
|
||||
: m_mcfg(p_mcfg)
|
||||
, m_mapped_address(ChangeableAddress(0xFFFF, 0xFF, 0xFF, 0xFF))
|
||||
{
|
||||
klog() << "PCI: Using MMIO Mechanism for PCI Configuartion Space Access";
|
||||
klog() << "PCI: Using MMIO for PCI configuration space access";
|
||||
m_mmio_window_region = MM.allocate_kernel_region(PAGE_ROUND_UP(PCI_MMIO_CONFIG_SPACE_SIZE), "PCI MMIO", Region::Access::Read | Region::Access::Write);
|
||||
|
||||
auto checkup_region = MM.allocate_kernel_region(p_mcfg.page_base(), (PAGE_SIZE * 2), "PCI MCFG Checkup", Region::Access::Read | Region::Access::Write);
|
||||
|
||||
Reference in New Issue
Block a user