ide-tape: make idetape_retry_pc() void

idetape_retry_pc() always returns ide_stopped so make it void.

There should be no functional changes caused by this patch.

Cc: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
Bartlomiej Zolnierkiewicz 2008-07-15 21:21:55 +02:00
parent 568ca92774
commit 258ec41130

View file

@ -696,7 +696,7 @@ static void idetape_queue_pc_head(ide_drive_t *drive, struct ide_atapi_pc *pc,
* last packet command. We queue a request sense packet command in * last packet command. We queue a request sense packet command in
* the head of the request list. * the head of the request list.
*/ */
static ide_startstop_t idetape_retry_pc (ide_drive_t *drive) static void idetape_retry_pc(ide_drive_t *drive)
{ {
idetape_tape_t *tape = drive->driver_data; idetape_tape_t *tape = drive->driver_data;
struct ide_atapi_pc *pc; struct ide_atapi_pc *pc;
@ -708,7 +708,6 @@ static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
idetape_create_request_sense_cmd(pc); idetape_create_request_sense_cmd(pc);
set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags); set_bit(IDETAPE_FLAG_IGNORE_DSC, &tape->flags);
idetape_queue_pc_head(drive, pc, rq); idetape_queue_pc_head(drive, pc, rq);
return ide_stopped;
} }
/* /*
@ -784,7 +783,8 @@ static ide_startstop_t idetape_pc_intr(ide_drive_t *drive)
pc->c[0]); pc->c[0]);
/* Retry operation */ /* Retry operation */
return idetape_retry_pc(drive); idetape_retry_pc(drive);
return ide_stopped;
} }
pc->error = 0; pc->error = 0;
if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) &&
@ -1078,7 +1078,8 @@ static ide_startstop_t idetape_media_access_finished(ide_drive_t *drive)
printk(KERN_ERR "ide-tape: %s: I/O error, ", printk(KERN_ERR "ide-tape: %s: I/O error, ",
tape->name); tape->name);
/* Retry operation */ /* Retry operation */
return idetape_retry_pc(drive); idetape_retry_pc(drive);
return ide_stopped;
} }
pc->error = 0; pc->error = 0;
if (tape->failed_pc == pc) if (tape->failed_pc == pc)