aboutsummaryrefslogtreecommitdiff
path: root/include/linux/libata.h
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2006-05-31 18:27:25 +0900
committerTejun Heo <htejun@gmail.com>2006-05-31 18:27:25 +0900
commit7395acb2c840fd4d0cacc91d6fb71440057141ab (patch)
tree29ea31b15be4cbcb44321eda2e607ea984adfd57 /include/linux/libata.h
parent20952b699035448d2277c64efc5910a31be66ed1 (diff)
[PATCH] libata: shift host flag constants
Nudge host flag constants to make a room after ATA_FLAG_EH_PENDING. New EH flag will be added. Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r--include/linux/libata.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h
index b0ee1c1437d..3f9c65f1aaf 100644
--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -149,14 +149,14 @@ enum {
ATA_FLAG_NO_ATAPI = (1 << 6), /* No ATAPI support */
ATA_FLAG_PIO_DMA = (1 << 7), /* PIO cmds via DMA */
ATA_FLAG_PIO_LBA48 = (1 << 8), /* Host DMA engine is LBA28 only */
- ATA_FLAG_PIO_POLLING = (1 << 10), /* use polling PIO if LLD
- * doesn't handle PIO interrupts */
- ATA_FLAG_NCQ = (1 << 11), /* host supports NCQ */
+ ATA_FLAG_PIO_POLLING = (1 << 9), /* use polling PIO if LLD
+ * doesn't handle PIO interrupts */
+ ATA_FLAG_NCQ = (1 << 10), /* host supports NCQ */
- ATA_FLAG_DEBUGMSG = (1 << 14),
- ATA_FLAG_FLUSH_PORT_TASK = (1 << 15), /* flush port task */
+ ATA_FLAG_DEBUGMSG = (1 << 13),
+ ATA_FLAG_FLUSH_PORT_TASK = (1 << 14), /* flush port task */
- ATA_FLAG_EH_PENDING = (1 << 16), /* EH pending */
+ ATA_FLAG_EH_PENDING = (1 << 15), /* EH pending */
ATA_FLAG_FROZEN = (1 << 17), /* port is frozen */
ATA_FLAG_RECOVERED = (1 << 18), /* recovery action performed */