diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 11:32:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 11:32:23 +0100 |
commit | 353b191a490b668a3fd56f650002293817843a9b (patch) | |
tree | 81457318438539601d84f2124ff6c1a175c4b3f4 /Kernel/IDEDiskDevice.cpp | |
parent | 39c3b117c99c63ee3265fa4eda5deeb1c77608d8 (diff) | |
download | serenity-353b191a490b668a3fd56f650002293817843a9b.zip |
Clean up some uninteresting log spam.
Diffstat (limited to 'Kernel/IDEDiskDevice.cpp')
-rw-r--r-- | Kernel/IDEDiskDevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/IDEDiskDevice.cpp b/Kernel/IDEDiskDevice.cpp index e8123fa716..944ffbe91c 100644 --- a/Kernel/IDEDiskDevice.cpp +++ b/Kernel/IDEDiskDevice.cpp @@ -154,7 +154,7 @@ void IDEDiskDevice::initialize() m_sectors_per_track = wbufbase[6]; kprintf( - "ide0: Master=\"%s\", C/H/Spt=%u/%u/%u\n", + "IDEDiskDevice: Master=\"%s\", C/H/Spt=%u/%u/%u\n", bbuf.pointer() + 54, m_cylinders, m_heads, @@ -187,7 +187,7 @@ bool IDEDiskDevice::read_sectors(dword start_sector, word count, byte* outbuf) while (IO::in8(IDE0_STATUS) & BUSY); #ifdef DISK_DEBUG - kprintf("ide0: Reading %u sector(s) @ LBA %u (%u/%u/%u)\n", count, start_sector, chs.cylinder, chs.head, chs.sector); + kprintf("IDEDiskDevice: Reading %u sector(s) @ LBA %u (%u/%u/%u)\n", count, start_sector, chs.cylinder, chs.head, chs.sector); #endif IO::out8(0x1F2, count == 256 ? 0 : LSB(count)); |