diff options
Diffstat (limited to 'drivers/ide/ide-tape.c')
-rw-r--r-- | drivers/ide/ide-tape.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index ba05e03f482b..d4a9c471dd13 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c | |||
@@ -693,13 +693,15 @@ static void ide_tape_handle_dsc(ide_drive_t *drive) | |||
693 | idetape_postpone_request(drive); | 693 | idetape_postpone_request(drive); |
694 | } | 694 | } |
695 | 695 | ||
696 | static void ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc, | 696 | static int ide_tape_io_buffers(ide_drive_t *drive, struct ide_atapi_pc *pc, |
697 | unsigned int bcount, int write) | 697 | unsigned int bcount, int write) |
698 | { | 698 | { |
699 | if (write) | 699 | if (write) |
700 | idetape_output_buffers(drive, pc, bcount); | 700 | idetape_output_buffers(drive, pc, bcount); |
701 | else | 701 | else |
702 | idetape_input_buffers(drive, pc, bcount); | 702 | idetape_input_buffers(drive, pc, bcount); |
703 | |||
704 | return bcount; | ||
703 | } | 705 | } |
704 | 706 | ||
705 | /* | 707 | /* |