diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-27 05:41:13 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-27 05:41:13 -0400 |
commit | bda3028813bd07f34f30288a492fbf6f7b8712dd (patch) | |
tree | 2773c970205cfa0c918dc7e5cb3a77a8b26e1e57 /drivers/ata/pata_artop.c | |
parent | ae1f19aeb715098ac06323f279383f3843429d97 (diff) | |
download | blackbird-op-linux-bda3028813bd07f34f30288a492fbf6f7b8712dd.tar.gz blackbird-op-linux-bda3028813bd07f34f30288a492fbf6f7b8712dd.zip |
[libata] Don't use old-EH ->eng_timeout() hook when not needed
The PATA driver set got converted to the new error handling setup, but
the old hooks were accidentally left in place. Now, removed.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_artop.c')
-rw-r--r-- | drivers/ata/pata_artop.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ata/pata_artop.c b/drivers/ata/pata_artop.c index 0f3b49176dc1..c4ccb75a4f1d 100644 --- a/drivers/ata/pata_artop.c +++ b/drivers/ata/pata_artop.c @@ -340,7 +340,7 @@ static const struct ata_port_operations artop6210_ops = { .bmdma_status = ata_bmdma_status, .qc_prep = ata_qc_prep, .qc_issue = ata_qc_issue_prot, - .eng_timeout = ata_eng_timeout, + .data_xfer = ata_pio_data_xfer, .irq_handler = ata_interrupt, @@ -375,8 +375,6 @@ static const struct ata_port_operations artop6260_ops = { .qc_issue = ata_qc_issue_prot, .data_xfer = ata_pio_data_xfer, - .eng_timeout = ata_eng_timeout, - .irq_handler = ata_interrupt, .irq_clear = ata_bmdma_irq_clear, |