diff options
author | Tejun Heo <htejun@gmail.com> | 2006-09-30 19:44:39 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-30 07:39:23 -0400 |
commit | e5c9e081e9c980fa785cd9002c25a251cf3f090e (patch) | |
tree | 366bb4647f06e5d31b5f416d61e7db9b2bbcaf63 /include/linux/libata.h | |
parent | 4f931374ecc599f6df7852509b6917abd5377205 (diff) | |
download | kernel-crypto-e5c9e081e9c980fa785cd9002c25a251cf3f090e.tar.gz kernel-crypto-e5c9e081e9c980fa785cd9002c25a251cf3f090e.tar.xz kernel-crypto-e5c9e081e9c980fa785cd9002c25a251cf3f090e.zip |
[PATCH] libata: cosmetic changes to constants
Cosmetic changes to ATA_DFLAG_* constants for soon-to-follow NCQ-off
patch.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index df44b09fbae..e54a5fd6a41 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -142,8 +142,8 @@ enum { ATA_DFLAG_NCQ = (1 << 3), /* device supports NCQ */ ATA_DFLAG_CFG_MASK = (1 << 8) - 1, - ATA_DFLAG_PIO = (1 << 8), /* device currently in PIO mode */ - ATA_DFLAG_SUSPENDED = (1 << 9), /* device suspended */ + ATA_DFLAG_PIO = (1 << 8), /* device limited to PIO mode */ + ATA_DFLAG_SUSPENDED = (1 << 10), /* device suspended */ ATA_DFLAG_INIT_MASK = (1 << 16) - 1, ATA_DFLAG_DETACH = (1 << 16), |