diff options
Diffstat (limited to 'Kernel/Devices/IDEDiskDevice.h')
-rw-r--r-- | Kernel/Devices/IDEDiskDevice.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Kernel/Devices/IDEDiskDevice.h b/Kernel/Devices/IDEDiskDevice.h index 250889f964..df0a22fbae 100644 --- a/Kernel/Devices/IDEDiskDevice.h +++ b/Kernel/Devices/IDEDiskDevice.h @@ -25,13 +25,6 @@ private: // ^DiskDevice virtual const char* class_name() const override; - struct CHS { - dword cylinder; - word head; - word sector; - }; - CHS lba_to_chs(dword) const; - void initialize(); bool wait_for_irq(); bool read_sectors(dword start_sector, word count, byte* buffer); |