diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:38 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:38 -0400 |
commit | adb1af9803d167091c2cb4de14014185054bfe2c (patch) | |
tree | aeac3bd825abfb344b1b1b43e282756fb8069f49 /drivers/ide/ide-io-std.c | |
parent | 22aa4b32a19b1f231d4ce7e9af6354b577a22a35 (diff) |
ide: pass command instead of request to ide_pio_datablock()
* Add IDE_TFLAG_FS taskfile flag and set it for REQ_TYPE_FS requests.
* Convert ->{in,out}put_data methods to take command instead of request
as an argument. Then convert pre_task_out_intr(), task_end_request(),
task_error(), task_in_unexpected(), ide_pio_sector(), ide_pio_multi()
and ide_pio_datablock() in similar way.
* Rename task_end_request() to ide_finish_cmd().
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-io-std.c')
-rw-r--r-- | drivers/ide/ide-io-std.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ide-io-std.c b/drivers/ide/ide-io-std.c index 570c0cc4514d..2d9c6dc3f956 100644 --- a/drivers/ide/ide-io-std.c +++ b/drivers/ide/ide-io-std.c | |||
@@ -219,7 +219,7 @@ static void ata_vlb_sync(unsigned long port) | |||
219 | * so if an odd len is specified, be sure that there's at least one | 219 | * so if an odd len is specified, be sure that there's at least one |
220 | * extra byte allocated for the buffer. | 220 | * extra byte allocated for the buffer. |
221 | */ | 221 | */ |
222 | void ide_input_data(ide_drive_t *drive, struct request *rq, void *buf, | 222 | void ide_input_data(ide_drive_t *drive, struct ide_cmd *cmd, void *buf, |
223 | unsigned int len) | 223 | unsigned int len) |
224 | { | 224 | { |
225 | ide_hwif_t *hwif = drive->hwif; | 225 | ide_hwif_t *hwif = drive->hwif; |
@@ -265,7 +265,7 @@ EXPORT_SYMBOL_GPL(ide_input_data); | |||
265 | /* | 265 | /* |
266 | * This is used for most PIO data transfers *to* the IDE interface | 266 | * This is used for most PIO data transfers *to* the IDE interface |
267 | */ | 267 | */ |
268 | void ide_output_data(ide_drive_t *drive, struct request *rq, void *buf, | 268 | void ide_output_data(ide_drive_t *drive, struct ide_cmd *cmd, void *buf, |
269 | unsigned int len) | 269 | unsigned int len) |
270 | { | 270 | { |
271 | ide_hwif_t *hwif = drive->hwif; | 271 | ide_hwif_t *hwif = drive->hwif; |