1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:47:46 +00:00

Kernel/PCI: Rename Access::scan_pci_domains method

We rename it to scan_pci_domains_from_acpi_mcfg_table to ensure clarity,
because this method relies on the ACPI MCFG table to work.
This commit is contained in:
Liav A 2021-10-22 19:54:20 +03:00 committed by Andreas Kling
parent ca32ee5714
commit d395ac8f59
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ private:
void enumerate_device(int type, u8 bus, u8 device, bool recursive);
explicit Access(AccessType);
bool scan_pci_domains(PhysicalAddress mcfg);
bool search_pci_domains_from_acpi_mcfg_table(PhysicalAddress mcfg);
Vector<Capability> get_capabilities(Address);
Optional<u8> get_capabilities_pointer(Address address);