diff options
| author | Albert Lee <albertcc@tw.ibm.com> | 2006-05-26 01:49:18 -0400 |
|---|---|---|
| committer | Jeff Garzik <jeff@garzik.org> | 2006-05-26 21:30:12 -0400 |
| commit | 89bad5892abca55f56d0ea713c7306d1f845ac8e (patch) | |
| tree | 41423cb7f285ff3a87eabf44d414a5b197e10e4a | |
| parent | 957d2df1801865eb1e63864bc63b970aa9c460ba (diff) | |
[PATCH] libata: add back ->data_xfer to ata_piix.c
Add back ->data_xfer and ->mode_filter to ata_piix.c.
Signed-off-by: Albert Lee <albertcc@tw.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
| -rw-r--r-- | drivers/scsi/ata_piix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c index 1db007f41a61..ad41dfd33e06 100644 --- a/drivers/scsi/ata_piix.c +++ b/drivers/scsi/ata_piix.c | |||
| @@ -228,6 +228,7 @@ static const struct ata_port_operations piix_pata_ops = { | |||
| 228 | .port_disable = ata_port_disable, | 228 | .port_disable = ata_port_disable, |
| 229 | .set_piomode = piix_set_piomode, | 229 | .set_piomode = piix_set_piomode, |
| 230 | .set_dmamode = piix_set_dmamode, | 230 | .set_dmamode = piix_set_dmamode, |
| 231 | .mode_filter = ata_pci_default_filter, | ||
| 231 | 232 | ||
| 232 | .tf_load = ata_tf_load, | 233 | .tf_load = ata_tf_load, |
| 233 | .tf_read = ata_tf_read, | 234 | .tf_read = ata_tf_read, |
| @@ -243,6 +244,7 @@ static const struct ata_port_operations piix_pata_ops = { | |||
| 243 | .bmdma_status = ata_bmdma_status, | 244 | .bmdma_status = ata_bmdma_status, |
| 244 | .qc_prep = ata_qc_prep, | 245 | .qc_prep = ata_qc_prep, |
| 245 | .qc_issue = ata_qc_issue_prot, | 246 | .qc_issue = ata_qc_issue_prot, |
| 247 | .data_xfer = ata_pio_data_xfer, | ||
| 246 | 248 | ||
| 247 | .freeze = ata_bmdma_freeze, | 249 | .freeze = ata_bmdma_freeze, |
| 248 | .thaw = ata_bmdma_thaw, | 250 | .thaw = ata_bmdma_thaw, |
| @@ -274,6 +276,7 @@ static const struct ata_port_operations piix_sata_ops = { | |||
| 274 | .bmdma_status = ata_bmdma_status, | 276 | .bmdma_status = ata_bmdma_status, |
| 275 | .qc_prep = ata_qc_prep, | 277 | .qc_prep = ata_qc_prep, |
| 276 | .qc_issue = ata_qc_issue_prot, | 278 | .qc_issue = ata_qc_issue_prot, |
| 279 | .data_xfer = ata_pio_data_xfer, | ||
| 277 | 280 | ||
| 278 | .freeze = ata_bmdma_freeze, | 281 | .freeze = ata_bmdma_freeze, |
| 279 | .thaw = ata_bmdma_thaw, | 282 | .thaw = ata_bmdma_thaw, |
