diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:43 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:43 -0400 |
commit | 4ab3d50224e35811b3351c28e63057595e8406e6 (patch) | |
tree | ccd1a729543defa03df97f0dc0b416f53c793dcc /drivers/ide/ide-probe.c | |
parent | a36223b0dc14606b5c80aacbbe6288133693a841 (diff) |
ide: set IDE_AFLAG_DRQ_INTERRUPT in do_identify()
Set IDE_AFLAG_DRQ_INTERRUPT in do_identify() instead of ATAPI
device drivers *_setup() methods.
While at it:
- use ata_id_cdb_intr()
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 'drivers/ide/ide-probe.c')
-rw-r--r-- | drivers/ide/ide-probe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 3269cbf0e56d..bce427ee08aa 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c | |||
@@ -206,6 +206,8 @@ static inline void do_identify (ide_drive_t *drive, u8 cmd) | |||
206 | drive->media = type; | 206 | drive->media = type; |
207 | /* an ATAPI device ignores DRDY */ | 207 | /* an ATAPI device ignores DRDY */ |
208 | drive->ready_stat = 0; | 208 | drive->ready_stat = 0; |
209 | if (ata_id_cdb_intr(id)) | ||
210 | drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT; | ||
209 | return; | 211 | return; |
210 | } | 212 | } |
211 | 213 | ||