aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 5d675f172037..721c9d8f41a2 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -911,6 +911,7 @@ enum {
911 IDE_TFLAG_WRITE = (1 << 15), 911 IDE_TFLAG_WRITE = (1 << 15),
912 IDE_TFLAG_FLAGGED_SET_IN_FLAGS = (1 << 16), 912 IDE_TFLAG_FLAGGED_SET_IN_FLAGS = (1 << 16),
913 IDE_TFLAG_IN_DATA = (1 << 17), 913 IDE_TFLAG_IN_DATA = (1 << 17),
914 IDE_TFLAG_CUSTOM_HANDLER = (1 << 18),
914}; 915};
915 916
916struct ide_taskfile { 917struct ide_taskfile {
@@ -949,7 +950,6 @@ typedef struct ide_task_s {
949 }; 950 };
950 u32 tf_flags; 951 u32 tf_flags;
951 int data_phase; 952 int data_phase;
952 ide_handler_t *handler;
953 struct request *rq; /* copy of request */ 953 struct request *rq; /* copy of request */
954 void *special; /* valid_t generally */ 954 void *special; /* valid_t generally */
955} ide_task_t; 955} ide_task_t;
@@ -970,9 +970,6 @@ void ide_pktcmd_tf_load(ide_drive_t *, u32, u16, u8);
970 */ 970 */
971extern ide_startstop_t do_rw_taskfile(ide_drive_t *, ide_task_t *); 971extern ide_startstop_t do_rw_taskfile(ide_drive_t *, ide_task_t *);
972 972
973extern ide_startstop_t set_multmode_intr(ide_drive_t *);
974extern ide_startstop_t set_geometry_intr(ide_drive_t *);
975extern ide_startstop_t recal_intr(ide_drive_t *);
976extern ide_startstop_t task_in_intr(ide_drive_t *); 973extern ide_startstop_t task_in_intr(ide_drive_t *);
977extern ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *); 974extern ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
978 975