aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-17 12:09:11 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-17 12:09:11 -0400
commitda167876bd0f71f1c646e5dd98997544d8d90e8e (patch)
treef88797e025ce8206867cbc800c25917480d0a7c7 /include/linux/ide.h
parentfe11edfaabf1787c05d782a7b33e6497d1118b1d (diff)
ide: IDE_AFLAG_WP -> IDE_DFLAG_WP
There should be no functional changes caused by this patch. Acked-by: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 155a57f55c60..bd0a4d36b6d3 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -503,8 +503,6 @@ enum {
503 IDE_AFLAG_CLIK_DRIVE = (1 << 19), 503 IDE_AFLAG_CLIK_DRIVE = (1 << 19),
504 /* Requires BH algorithm for packets */ 504 /* Requires BH algorithm for packets */
505 IDE_AFLAG_ZIP_DRIVE = (1 << 20), 505 IDE_AFLAG_ZIP_DRIVE = (1 << 20),
506 /* Write protect */
507 IDE_AFLAG_WP = (1 << 21),
508 /* Supports format progress report */ 506 /* Supports format progress report */
509 IDE_AFLAG_SRFP = (1 << 22), 507 IDE_AFLAG_SRFP = (1 << 22),
510 508
@@ -579,6 +577,8 @@ enum {
579 /* heads unloaded, please don't reset port */ 577 /* heads unloaded, please don't reset port */
580 IDE_DFLAG_PARKED = (1 << 28), 578 IDE_DFLAG_PARKED = (1 << 28),
581 IDE_DFLAG_MEDIA_CHANGED = (1 << 29), 579 IDE_DFLAG_MEDIA_CHANGED = (1 << 29),
580 /* write protect */
581 IDE_DFLAG_WP = (1 << 30),
582}; 582};
583 583
584struct ide_drive_s { 584struct ide_drive_s {