diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:31 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-13 15:39:31 -0400 |
commit | 67c56364df843fb9e3ed1af014b8fbe4b22ff25d (patch) | |
tree | 586a85b1535038dea95ef2b0bff9f7d6c9fa442e /drivers/ide/ide-floppy.c | |
parent | 844b9468523c8c2c45b90df4efcabcbe4926b5ab (diff) |
ide: add request_sense_{pc,rq} to ide_drive_t
Add 'struct ide_atapi_pc request_sense_pc' and 'request request_sense_rq' to
ide_drive_t and use them instead of fields in struct ide_{floppy,tape}_obj.
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-floppy.c')
-rw-r--r-- | drivers/ide/ide-floppy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c index 49e702670b8e..6a1ade8ca9fe 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -208,8 +208,8 @@ void ide_floppy_create_request_sense_cmd(struct ide_atapi_pc *pc) | |||
208 | static void idefloppy_retry_pc(ide_drive_t *drive) | 208 | static void idefloppy_retry_pc(ide_drive_t *drive) |
209 | { | 209 | { |
210 | struct ide_floppy_obj *floppy = drive->driver_data; | 210 | struct ide_floppy_obj *floppy = drive->driver_data; |
211 | struct request *rq = &floppy->request_sense_rq; | 211 | struct request *rq = &drive->request_sense_rq; |
212 | struct ide_atapi_pc *pc = &floppy->request_sense_pc; | 212 | struct ide_atapi_pc *pc = &drive->request_sense_pc; |
213 | 213 | ||
214 | (void)ide_read_error(drive); | 214 | (void)ide_read_error(drive); |
215 | ide_floppy_create_request_sense_cmd(pc); | 215 | ide_floppy_create_request_sense_cmd(pc); |