mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:17:45 +00:00
Kernel: Convert klog() => dbgln() in BXVGADevice
This commit is contained in:
parent
3985468e83
commit
201d35e70f
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…
Add table
Add a link
Reference in a new issue