diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-24 18:22:46 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-24 18:22:46 -0400 |
commit | 0d6a9754c06e173552b0ad5fad45f69786b6de99 (patch) | |
tree | 1dc9915dd8a22761aff2c91acb8686e680e79e30 /drivers/ide/ide-iops.c | |
parent | 7eeaaaa52285d5e6cb79f515e99c591dcb9d04fe (diff) |
ide: move ide_read_bcount_and_ireason() to ide-atapi.c
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-iops.c')
-rw-r--r-- | drivers/ide/ide-iops.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index ee9c60342787..d24add692129 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -362,21 +362,6 @@ u8 ide_read_error(ide_drive_t *drive) | |||
362 | } | 362 | } |
363 | EXPORT_SYMBOL_GPL(ide_read_error); | 363 | EXPORT_SYMBOL_GPL(ide_read_error); |
364 | 364 | ||
365 | void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason) | ||
366 | { | ||
367 | ide_task_t task; | ||
368 | |||
369 | memset(&task, 0, sizeof(task)); | ||
370 | task.tf_flags = IDE_TFLAG_IN_LBAH | IDE_TFLAG_IN_LBAM | | ||
371 | IDE_TFLAG_IN_NSECT; | ||
372 | |||
373 | drive->hwif->tp_ops->tf_read(drive, &task); | ||
374 | |||
375 | *bcount = (task.tf.lbah << 8) | task.tf.lbam; | ||
376 | *ireason = task.tf.nsect & 3; | ||
377 | } | ||
378 | EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason); | ||
379 | |||
380 | const struct ide_tp_ops default_tp_ops = { | 365 | const struct ide_tp_ops default_tp_ops = { |
381 | .exec_command = ide_exec_command, | 366 | .exec_command = ide_exec_command, |
382 | .read_status = ide_read_status, | 367 | .read_status = ide_read_status, |