diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:36 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:36 -0400 |
commit | 03a2faaea8f44edfe583ddf1240948019becfbe4 (patch) | |
tree | 08cb1f71390aa1972ad4eb9eba7da48ac3a6d9ce /drivers/ide/ide-floppy.c | |
parent | 3ee38302ffc63da93eb0313053a990bb3466e275 (diff) |
ide: return request status from ->pc_callback method
Make ->pc_callback method return request status and then move
the request completion from ->pc_callback to ide_pc_intr().
There should be no functional changes caused by this patch.
Acked-by: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-floppy.c')
-rw-r--r-- | drivers/ide/ide-floppy.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c index ab870a08d62b..5625946739ad 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -71,7 +71,7 @@ static void idefloppy_update_buffers(ide_drive_t *drive, | |||
71 | ide_end_request(drive, 1, 0); | 71 | ide_end_request(drive, 1, 0); |
72 | } | 72 | } |
73 | 73 | ||
74 | static void ide_floppy_callback(ide_drive_t *drive, int dsc) | 74 | static int ide_floppy_callback(ide_drive_t *drive, int dsc) |
75 | { | 75 | { |
76 | struct ide_disk_obj *floppy = drive->driver_data; | 76 | struct ide_disk_obj *floppy = drive->driver_data; |
77 | struct ide_atapi_pc *pc = drive->pc; | 77 | struct ide_atapi_pc *pc = drive->pc; |
@@ -108,14 +108,10 @@ static void ide_floppy_callback(ide_drive_t *drive, int dsc) | |||
108 | "Aborting request!\n"); | 108 | "Aborting request!\n"); |
109 | } | 109 | } |
110 | 110 | ||
111 | if (uptodate == 0) | 111 | if (blk_special_request(rq)) |
112 | drive->failed_pc = NULL; | ||
113 | |||
114 | if (blk_special_request(rq)) { | ||
115 | rq->errors = uptodate ? 0 : IDE_DRV_ERROR_GENERAL; | 112 | rq->errors = uptodate ? 0 : IDE_DRV_ERROR_GENERAL; |
116 | ide_complete_rq(drive, 0); | 113 | |
117 | } else | 114 | return uptodate; |
118 | ide_end_request(drive, uptodate, 0); | ||
119 | } | 115 | } |
120 | 116 | ||
121 | static void ide_floppy_report_error(struct ide_disk_obj *floppy, | 117 | static void ide_floppy_report_error(struct ide_disk_obj *floppy, |