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.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index b5be2368c96..cc41a885688 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -356,21 +356,25 @@ enum {
356 IDE_AFLAG_CLIK_DRIVE = (1 << 19), 356 IDE_AFLAG_CLIK_DRIVE = (1 << 19),
357 /* Requires BH algorithm for packets */ 357 /* Requires BH algorithm for packets */
358 IDE_AFLAG_ZIP_DRIVE = (1 << 20), 358 IDE_AFLAG_ZIP_DRIVE = (1 << 20),
359 /* Write protect */
360 IDE_AFLAG_WP = (1 << 21),
361 /* Supports format progress report */
362 IDE_AFLAG_SRFP = (1 << 22),
359 363
360 /* ide-tape */ 364 /* ide-tape */
361 IDE_AFLAG_IGNORE_DSC = (1 << 21), 365 IDE_AFLAG_IGNORE_DSC = (1 << 23),
362 /* 0 When the tape position is unknown */ 366 /* 0 When the tape position is unknown */
363 IDE_AFLAG_ADDRESS_VALID = (1 << 22), 367 IDE_AFLAG_ADDRESS_VALID = (1 << 24),
364 /* Device already opened */ 368 /* Device already opened */
365 IDE_AFLAG_BUSY = (1 << 23), 369 IDE_AFLAG_BUSY = (1 << 25),
366 /* Attempt to auto-detect the current user block size */ 370 /* Attempt to auto-detect the current user block size */
367 IDE_AFLAG_DETECT_BS = (1 << 24), 371 IDE_AFLAG_DETECT_BS = (1 << 26),
368 /* Currently on a filemark */ 372 /* Currently on a filemark */
369 IDE_AFLAG_FILEMARK = (1 << 25), 373 IDE_AFLAG_FILEMARK = (1 << 27),
370 /* 0 = no tape is loaded, so we don't rewind after ejecting */ 374 /* 0 = no tape is loaded, so we don't rewind after ejecting */
371 IDE_AFLAG_MEDIUM_PRESENT = (1 << 26), 375 IDE_AFLAG_MEDIUM_PRESENT = (1 << 28),
372 376
373 IDE_AFLAG_NO_AUTOCLOSE = (1 << 27), 377 IDE_AFLAG_NO_AUTOCLOSE = (1 << 29),
374}; 378};
375 379
376struct ide_drive_s { 380struct ide_drive_s {