svn commit: r322080 - stable/11/sys/sys
Alexander Motin
mav at FreeBSD.org
Sat Aug 5 08:37:10 UTC 2017
Author: mav
Date: Sat Aug 5 08:37:08 2017
New Revision: 322080
URL: https://svnweb.freebsd.org/changeset/base/322080
Log:
MFC r321685: Fix IORDY bits definition.
According to the ATA specs, IORDYDIS should be bit 10, IORDY -- bit 11.
PR: 221049
Submitted by: aaron.styx at baesystems.com
Modified:
stable/11/sys/sys/ata.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/sys/ata.h
==============================================================================
--- stable/11/sys/sys/ata.h Sat Aug 5 08:36:04 2017 (r322079)
+++ stable/11/sys/sys/ata.h Sat Aug 5 08:37:08 2017 (r322080)
@@ -68,8 +68,8 @@ struct ata_params {
/*049*/ u_int16_t capabilities1;
#define ATA_SUPPORT_DMA 0x0100
#define ATA_SUPPORT_LBA 0x0200
-#define ATA_SUPPORT_IORDY 0x0400
-#define ATA_SUPPORT_IORDYDIS 0x0800
+#define ATA_SUPPORT_IORDYDIS 0x0400
+#define ATA_SUPPORT_IORDY 0x0800
#define ATA_SUPPORT_OVERLAP 0x4000
/*050*/ u_int16_t capabilities2;
More information about the svn-src-stable
mailing list