aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-13 15:39:37 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-13 15:39:37 -0400
commitc39220483ebe6871fb129d4b2236cd95290c41fc (patch)
tree3bdd4a754d2103a73aa2df4b218093765aa92c2b /include/linux/ide.h
parent97100fc816badbbc162644cfde7ad39ae9211fb4 (diff)
ide: DMA_PIO_RETRY -> IDE_DFLAG_DMA_PIO_RETRY
Add IDE_DFLAG_DMA_PIO_RETRY and use it instead of ide_drive_t.state + DMA_PIO_RETRY. There should be no functional changes cause by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index b538d2e6dcbb..230bd9dd851d 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -48,12 +48,6 @@ typedef unsigned char byte; /* used everywhere */
48#define ERROR_RESET 3 /* Reset controller every 4th retry */ 48#define ERROR_RESET 3 /* Reset controller every 4th retry */
49#define ERROR_RECAL 1 /* Recalibrate every 2nd retry */ 49#define ERROR_RECAL 1 /* Recalibrate every 2nd retry */
50 50
51/*
52 * state flags
53 */
54
55#define DMA_PIO_RETRY 1 /* retrying in PIO */
56
57#define HWIF(drive) ((ide_hwif_t *)((drive)->hwif)) 51#define HWIF(drive) ((ide_hwif_t *)((drive)->hwif))
58#define HWGROUP(drive) ((ide_hwgroup_t *)(HWIF(drive)->hwgroup)) 52#define HWGROUP(drive) ((ide_hwgroup_t *)(HWIF(drive)->hwgroup))
59 53
@@ -506,6 +500,8 @@ enum {
506 IDE_DFLAG_WCACHE = (1 << 23), 500 IDE_DFLAG_WCACHE = (1 << 23),
507 /* used for ignoring ATA_DF */ 501 /* used for ignoring ATA_DF */
508 IDE_DFLAG_NOWERR = (1 << 24), 502 IDE_DFLAG_NOWERR = (1 << 24),
503 /* retrying in PIO */
504 IDE_DFLAG_DMA_PIO_RETRY = (1 << 25),
509}; 505};
510 506
511struct ide_drive_s { 507struct ide_drive_s {
@@ -535,7 +531,6 @@ struct ide_drive_s {
535 select_t select; /* basic drive/head select reg value */ 531 select_t select; /* basic drive/head select reg value */
536 532
537 u8 retry_pio; /* retrying dma capable host in pio */ 533 u8 retry_pio; /* retrying dma capable host in pio */
538 u8 state; /* retry state */
539 u8 waiting_for_dma; /* dma currently in progress */ 534 u8 waiting_for_dma; /* dma currently in progress */
540 535
541 u8 quirk_list; /* considered quirky, set for a specific host */ 536 u8 quirk_list; /* considered quirky, set for a specific host */