mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
Kernel: Mark MMIOAccess detection function as UNMAP_AFTER_INIT
This commit is contained in:
parent
40ea464fb0
commit
80a3cc47e5
Notes:
sideshowbarker
2024-07-18 12:34:45 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/80a3cc47e51 Pull-request: https://github.com/SerenityOS/serenity/pull/7938
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ u8 MMIOAccess::segment_end_bus(u32 seg) const
|
|||
return segment.value().get_end_bus();
|
||||
}
|
||||
|
||||
PhysicalAddress MMIOAccess::determine_memory_mapped_bus_region(u32 segment, u8 bus) const
|
||||
UNMAP_AFTER_INIT PhysicalAddress MMIOAccess::determine_memory_mapped_bus_region(u32 segment, u8 bus) const
|
||||
{
|
||||
VERIFY(bus >= segment_start_bus(segment) && bus <= segment_end_bus(segment));
|
||||
auto seg = m_segments.get(segment);
|
||||
|
|
Loading…
Reference in a new issue