diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-15 15:21:59 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-15 15:21:59 -0400 |
commit | 28c7214bd8c2bbd4873b8f1e7f58d86d3731124f (patch) | |
tree | 224d9b798a73a3b5d0d8de204a6e9465a37c4104 /include/linux/ide.h | |
parent | 4cc196897de9e6c02cf86debc5b9f7cf1b69a214 (diff) |
ide: add PC_FLAG_DRQ_INTERRUPT pc flag
Add PC_FLAG_DRQ_INTERRUPT pc flag, set it in ide*_do_request()
and check for it (instead of checking for IDE*_FLAG_DRQ_INTERRUPT)
in ide*_issue_pc(). This is a preparation for adding generic
ide_issue_pc() helper.
There should be no functional changes caused by this patch.
Cc: 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.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index bed3c58798ae..c2274ad44b2e 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -608,6 +608,7 @@ enum { | |||
608 | /* command timed out */ | 608 | /* command timed out */ |
609 | PC_FLAG_TIMEDOUT = (1 << 7), | 609 | PC_FLAG_TIMEDOUT = (1 << 7), |
610 | PC_FLAG_ZIP_DRIVE = (1 << 8), | 610 | PC_FLAG_ZIP_DRIVE = (1 << 8), |
611 | PC_FLAG_DRQ_INTERRUPT = (1 << 9), | ||
611 | }; | 612 | }; |
612 | 613 | ||
613 | struct ide_atapi_pc { | 614 | struct ide_atapi_pc { |