diff options
Diffstat (limited to 'drivers/ide/ide-iops.c')
-rw-r--r-- | drivers/ide/ide-iops.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index ac9e063bcf93..65275454a209 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -127,7 +127,7 @@ void SELECT_MASK (ide_drive_t *drive, int mask) | |||
127 | port_ops->maskproc(drive, mask); | 127 | port_ops->maskproc(drive, mask); |
128 | } | 128 | } |
129 | 129 | ||
130 | void ide_tf_load(ide_drive_t *drive, ide_task_t *task) | 130 | static void ide_tf_load(ide_drive_t *drive, ide_task_t *task) |
131 | { | 131 | { |
132 | ide_hwif_t *hwif = drive->hwif; | 132 | ide_hwif_t *hwif = drive->hwif; |
133 | struct ide_io_ports *io_ports = &hwif->io_ports; | 133 | struct ide_io_ports *io_ports = &hwif->io_ports; |
@@ -172,7 +172,7 @@ void ide_tf_load(ide_drive_t *drive, ide_task_t *task) | |||
172 | io_ports->device_addr); | 172 | io_ports->device_addr); |
173 | } | 173 | } |
174 | 174 | ||
175 | void ide_tf_read(ide_drive_t *drive, ide_task_t *task) | 175 | static void ide_tf_read(ide_drive_t *drive, ide_task_t *task) |
176 | { | 176 | { |
177 | ide_hwif_t *hwif = drive->hwif; | 177 | ide_hwif_t *hwif = drive->hwif; |
178 | struct ide_io_ports *io_ports = &hwif->io_ports; | 178 | struct ide_io_ports *io_ports = &hwif->io_ports; |
@@ -323,6 +323,9 @@ static void ata_output_data(ide_drive_t *drive, struct request *rq, | |||
323 | 323 | ||
324 | void default_hwif_transport(ide_hwif_t *hwif) | 324 | void default_hwif_transport(ide_hwif_t *hwif) |
325 | { | 325 | { |
326 | hwif->tf_load = ide_tf_load; | ||
327 | hwif->tf_read = ide_tf_read; | ||
328 | |||
326 | hwif->input_data = ata_input_data; | 329 | hwif->input_data = ata_input_data; |
327 | hwif->output_data = ata_output_data; | 330 | hwif->output_data = ata_output_data; |
328 | } | 331 | } |