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
commitfe11edfaabf1787c05d782a7b33e6497d1118b1d (patch)
treebf58cca2c2e635e54acf67079bdb4ed26790a84a /include/linux/ide.h
parent6f84083bbb7d206c8555e5834a2c9b887452fd54 (diff)
ide: IDE_AFLAG_MEDIA_CHANGED -> IDE_DFLAG_MEDIA_CHANGED
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 c47e371554c1..155a57f55c60 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -464,7 +464,6 @@ struct ide_acpi_hwif_link;
464/* ATAPI device flags */ 464/* ATAPI device flags */
465enum { 465enum {
466 IDE_AFLAG_DRQ_INTERRUPT = (1 << 0), 466 IDE_AFLAG_DRQ_INTERRUPT = (1 << 0),
467 IDE_AFLAG_MEDIA_CHANGED = (1 << 1),
468 /* Drive cannot lock the door. */ 467 /* Drive cannot lock the door. */
469 IDE_AFLAG_NO_DOORLOCK = (1 << 2), 468 IDE_AFLAG_NO_DOORLOCK = (1 << 2),
470 469
@@ -578,7 +577,8 @@ enum {
578 /* don't unload heads */ 577 /* don't unload heads */
579 IDE_DFLAG_NO_UNLOAD = (1 << 27), 578 IDE_DFLAG_NO_UNLOAD = (1 << 27),
580 /* heads unloaded, please don't reset port */ 579 /* heads unloaded, please don't reset port */
581 IDE_DFLAG_PARKED = (1 << 28) 580 IDE_DFLAG_PARKED = (1 << 28),
581 IDE_DFLAG_MEDIA_CHANGED = (1 << 29),
582}; 582};
583 583
584struct ide_drive_s { 584struct ide_drive_s {