diff options
author | Borislav Petkov <petkovbb@gmail.com> | 2009-05-01 17:27:11 -0400 |
---|---|---|
committer | Borislav Petkov <petkovbb@gmail.com> | 2009-05-15 00:44:06 -0400 |
commit | 5a0e43b5e2ee9a295f864c38f0e853b1a4fc3892 (patch) | |
tree | 9793191360addddb7d240e34d983817fde3ec621 /drivers/ide/ide-floppy.c | |
parent | 077e6dba20e74a455a0452379d2a965c7e1b01ad (diff) |
ide-atapi: add a len-parameter to ide_queue_pc_tail
This is in preparation for removing ide_atapi_pc.
There should be no functional change resulting from this patch.
Signed-off-by: Borislav Petkov <petkovbb@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 a1c55985d4ae..5df00d4ab8da 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -318,7 +318,7 @@ static int ide_floppy_get_flexible_disk_page(ide_drive_t *drive, | |||
318 | 318 | ||
319 | ide_floppy_create_mode_sense_cmd(pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE); | 319 | ide_floppy_create_mode_sense_cmd(pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE); |
320 | 320 | ||
321 | if (ide_queue_pc_tail(drive, disk, pc)) { | 321 | if (ide_queue_pc_tail(drive, disk, pc, pc->req_xfer)) { |
322 | printk(KERN_ERR PFX "Can't get flexible disk page params\n"); | 322 | printk(KERN_ERR PFX "Can't get flexible disk page params\n"); |
323 | return 1; | 323 | return 1; |
324 | } | 324 | } |
@@ -390,7 +390,7 @@ static int ide_floppy_get_capacity(ide_drive_t *drive) | |||
390 | pc.buf = &pc_buf[0]; | 390 | pc.buf = &pc_buf[0]; |
391 | pc.buf_size = sizeof(pc_buf); | 391 | pc.buf_size = sizeof(pc_buf); |
392 | 392 | ||
393 | if (ide_queue_pc_tail(drive, disk, &pc)) { | 393 | if (ide_queue_pc_tail(drive, disk, &pc, pc.req_xfer)) { |
394 | printk(KERN_ERR PFX "Can't get floppy parameters\n"); | 394 | printk(KERN_ERR PFX "Can't get floppy parameters\n"); |
395 | return 1; | 395 | return 1; |
396 | } | 396 | } |