From 353b191a490b668a3fd56f650002293817843a9b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 6 Feb 2019 11:32:23 +0100 Subject: Clean up some uninteresting log spam. --- Kernel/IDEDiskDevice.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Kernel/IDEDiskDevice.cpp') 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)); -- cgit v1.2.3