Kernel: Keep records of PCI::Address & PCI::ID pairs for enumeration

This commit is contained in:
Liav A 2020-04-10 20:25:03 +03:00 committed by Andreas Kling
commit 65f939b55c
Notes: sideshowbarker 2024-07-19 07:44:07 +09:00
12 changed files with 49 additions and 13 deletions

View file

@ -38,7 +38,7 @@ protected:
IOAccess();
private:
virtual void enumerate_all(Function<void(Address, ID)>&) override;
virtual void enumerate_hardware(Function<void(Address, ID)>) override;
virtual const char* access_type() const override { return "IO-Access"; };
virtual uint32_t segment_count() const override { return 1; };
virtual void write8_field(Address address, u32, u8) override final;