mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
Kernel: Use klog() instead of kprintf()
Also, duplicate data in dbg() and klog() calls were removed. In addition, leakage of virtual address to kernel log is prevented. This is done by replacing kprintf() calls to dbg() calls with the leaked data instead. Also, other kprintf() calls were replaced with klog().
This commit is contained in:
parent
19aa53e1f9
commit
0fc60e41dd
53 changed files with 397 additions and 573 deletions
|
@ -37,7 +37,7 @@ void PCI::IOAccess::initialize()
|
|||
|
||||
PCI::IOAccess::IOAccess()
|
||||
{
|
||||
kprintf("PCI: Using IO Mechanism for PCI Configuartion Space Access\n");
|
||||
klog() << "PCI: Using IO Mechanism for PCI Configuartion Space Access";
|
||||
}
|
||||
|
||||
u8 PCI::IOAccess::read8_field(Address address, u32 field)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue