mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 18:00:16 +00:00
Kernel: Rename two PCI components
Rename ID => HardwareID, and PhysicalID => DeviceIdentifier. This change merely does that to clarify what these objects really are.
This commit is contained in:
parent
82bb08a15c
commit
da327746a2
Notes:
sideshowbarker
2024-07-18 03:21:17 +09:00
Author: https://github.com/supercomputer7
Commit: da327746a2
Pull-request: https://github.com/SerenityOS/serenity/pull/10187
Reviewed-by: https://github.com/awesomekling
26 changed files with 97 additions and 97 deletions
|
@ -17,9 +17,9 @@ u8 read8(Address address, u32 field);
|
|||
u16 read16(Address address, u32 field);
|
||||
u32 read32(Address address, u32 field);
|
||||
|
||||
ID get_id(PCI::Address);
|
||||
HardwareID get_hardware_id(PCI::Address);
|
||||
bool is_io_space_enabled(Address);
|
||||
void enumerate(Function<void(Address, PhysicalID const&)> callback);
|
||||
void enumerate(Function<void(Address, DeviceIdentifier const&)> callback);
|
||||
void enable_interrupt_line(Address);
|
||||
void disable_interrupt_line(Address);
|
||||
u8 get_interrupt_line(Address);
|
||||
|
@ -44,6 +44,6 @@ void enable_io_space(Address);
|
|||
void disable_io_space(Address);
|
||||
void enable_memory_space(Address);
|
||||
void disable_memory_space(Address);
|
||||
PhysicalID get_physical_id(Address address);
|
||||
DeviceIdentifier get_device_identifier(Address address);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue