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 | b6308ee0c55acd2e943d849773c9f0a49c516317 (patch) | |
tree | e56f59a7935fccdf0145ffd4638a066bf4ba1e17 /drivers/ide/au1xxx-ide.c | |
parent | adb1af9803d167091c2cb4de14014185054bfe2c (diff) |
ide: move command related fields from ide_hwif_t to struct ide_cmd
* Move command related fields from ide_hwif_t to struct ide_cmd.
* Make ide_init_sg_cmd() take command and sectors number as arguments.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/au1xxx-ide.c')
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index 72d7d615e1fc..3ace0cda5452 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c | |||
@@ -215,7 +215,7 @@ static int auide_build_dmatable(ide_drive_t *drive) | |||
215 | struct request *rq = hwif->rq; | 215 | struct request *rq = hwif->rq; |
216 | _auide_hwif *ahwif = &auide_hwif; | 216 | _auide_hwif *ahwif = &auide_hwif; |
217 | struct scatterlist *sg; | 217 | struct scatterlist *sg; |
218 | int i = hwif->sg_nents, iswrite, count = 0; | 218 | int i = hwif->cmd.sg_nents, iswrite, count = 0; |
219 | 219 | ||
220 | iswrite = (rq_data_dir(rq) == WRITE); | 220 | iswrite = (rq_data_dir(rq) == WRITE); |
221 | /* Save for interrupt context */ | 221 | /* Save for interrupt context */ |