aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-tape.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 07:46:43 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 07:46:43 -0400
commit6902a5331256e1b9f4cef95a1e3622252113b260 (patch)
treef33ef1a732425e1862fcf0bbd0e909f82d247a8a /drivers/ide/ide-tape.c
parent37245aabfa0c628ba884cd88fe5cd633b426a1b2 (diff)
ide: pass error value to ide_complete_rq()
Set rq->errors at ide_complete_rq() call sites and then pass error value to ide_complete_rq(). [ Some rq->errors assignments look really wrong but this patch leaves them alone to not introduce too many changes at once. ] There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-tape.c')
-rw-r--r--drivers/ide/ide-tape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index a42e49c6cc3f..3bfcd7290ce0 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -774,8 +774,8 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive,
774 if (rq != postponed_rq) { 774 if (rq != postponed_rq) {
775 printk(KERN_ERR "ide-tape: ide-tape.c bug - " 775 printk(KERN_ERR "ide-tape: ide-tape.c bug - "
776 "Two DSC requests were queued\n"); 776 "Two DSC requests were queued\n");
777 rq->errors = IDE_DRV_ERROR_GENERAL;
778 drive->failed_pc = NULL; 777 drive->failed_pc = NULL;
778 rq->errors = 0;
779 ide_complete_rq(drive, 0); 779 ide_complete_rq(drive, 0);
780 return ide_stopped; 780 return ide_stopped;
781 } 781 }