mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 01:08:56 +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: 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) {
|
PCI::enumerate([&framebuffer_address](const PCI::Address& address, PCI::ID id) {
|
||||||
if (id == bochs_vga_id || id == virtualbox_vga_id) {
|
if (id == bochs_vga_id || id == virtualbox_vga_id) {
|
||||||
framebuffer_address = PCI::get_BAR0(address) & 0xfffffff0;
|
framebuffer_address = PCI::get_BAR0(address) & 0xfffffff0;
|
||||||
klog() << "BXVGA: framebuffer @ " << PhysicalAddress(framebuffer_address);
|
dbgln("BXVGA: framebuffer @ {}", PhysicalAddress(framebuffer_address));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return framebuffer_address;
|
return framebuffer_address;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue