diff options
Diffstat (limited to 'Kernel/Storage/IDEChannel.cpp')
-rw-r--r-- | Kernel/Storage/IDEChannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Storage/IDEChannel.cpp b/Kernel/Storage/IDEChannel.cpp index 14debe1dc7..215cac3269 100644 --- a/Kernel/Storage/IDEChannel.cpp +++ b/Kernel/Storage/IDEChannel.cpp @@ -357,7 +357,7 @@ UNMAP_AFTER_INIT void IDEChannel::detect_disks() volatile ATAIdentifyBlock& identify_block = (volatile ATAIdentifyBlock&)(*wbuf.data()); - u16 capabilities = identify_block.capabilites[0]; + u16 capabilities = identify_block.capabilities[0]; // If the drive is so old that it doesn't support LBA, ignore it. if (!(capabilities & ATA_CAP_LBA)) |