diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-06 14:27:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-06 14:27:57 -0700 |
commit | f1ea7254726d25a333056619ec6b1a8ee1b7358d (patch) | |
tree | ad0a6307890595172406fda45ec763f7a6bb8686 /include | |
parent | ba9b0c11285bcdaa3243c4123e924094b626c740 (diff) | |
parent | ca09a237b8c6b053e101a4a83bc30d2c48435bd5 (diff) | |
download | linux-3.10-f1ea7254726d25a333056619ec6b1a8ee1b7358d.tar.gz linux-3.10-f1ea7254726d25a333056619ec6b1a8ee1b7358d.tar.bz2 linux-3.10-f1ea7254726d25a333056619ec6b1a8ee1b7358d.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6:
ide: workaround for bogus gcc warning in ide_sysfs_register_port()
ide-cd: Optiarc DVD RW AD-7200A does play audio
IDE: Fix platform device registration in Swarm IDE driver (v2)
ide-dma: fix ide_build_dmatable() for TRM290
ide-cd: temporary tray close fix
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ide.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 1524829f73f..6514db8fd2e 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -366,7 +366,9 @@ enum { /* Currently on a filemark */ IDE_AFLAG_FILEMARK = (1 << 25), /* 0 = no tape is loaded, so we don't rewind after ejecting */ - IDE_AFLAG_MEDIUM_PRESENT = (1 << 26) + IDE_AFLAG_MEDIUM_PRESENT = (1 << 26), + + IDE_AFLAG_NO_AUTOCLOSE = (1 << 27), }; struct ide_drive_s { |