mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Kernel: Convert klog() => dbgln() in BXVGADevice
This commit is contained in:
parent
3985468e83
commit
201d35e70f
Notes:
sideshowbarker
2024-07-18 21:29:11 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/201d35e70fe
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ UNMAP_AFTER_INIT u32 BXVGADevice::find_framebuffer_address()
|
|||
PCI::enumerate([&framebuffer_address](const PCI::Address& address, PCI::ID id) {
|
||||
if (id == bochs_vga_id || id == virtualbox_vga_id) {
|
||||
framebuffer_address = PCI::get_BAR0(address) & 0xfffffff0;
|
||||
klog() << "BXVGA: framebuffer @ " << PhysicalAddress(framebuffer_address);
|
||||
dbgln("BXVGA: framebuffer @ {}", PhysicalAddress(framebuffer_address));
|
||||
}
|
||||
});
|
||||
return framebuffer_address;
|
||||
|
|
Loading…
Reference in a new issue