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_legacy.c | |
parent | ae1f19aeb715098ac06323f279383f3843429d97 (diff) |
[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_legacy.c')
-rw-r--r-- | drivers/ata/pata_legacy.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/ata/pata_legacy.c b/drivers/ata/pata_legacy.c index ad37c220bb2c..10231ef731d1 100644 --- a/drivers/ata/pata_legacy.c +++ b/drivers/ata/pata_legacy.c | |||
@@ -161,7 +161,7 @@ static struct ata_port_operations simple_port_ops = { | |||
161 | 161 | ||
162 | .qc_prep = ata_qc_prep, | 162 | .qc_prep = ata_qc_prep, |
163 | .qc_issue = ata_qc_issue_prot, | 163 | .qc_issue = ata_qc_issue_prot, |
164 | .eng_timeout = ata_eng_timeout, | 164 | |
165 | .data_xfer = ata_pio_data_xfer_noirq, | 165 | .data_xfer = ata_pio_data_xfer_noirq, |
166 | 166 | ||
167 | .irq_handler = ata_interrupt, | 167 | .irq_handler = ata_interrupt, |
@@ -186,7 +186,7 @@ static struct ata_port_operations legacy_port_ops = { | |||
186 | 186 | ||
187 | .qc_prep = ata_qc_prep, | 187 | .qc_prep = ata_qc_prep, |
188 | .qc_issue = ata_qc_issue_prot, | 188 | .qc_issue = ata_qc_issue_prot, |
189 | .eng_timeout = ata_eng_timeout, | 189 | |
190 | .data_xfer = ata_pio_data_xfer_noirq, | 190 | .data_xfer = ata_pio_data_xfer_noirq, |
191 | 191 | ||
192 | .irq_handler = ata_interrupt, | 192 | .irq_handler = ata_interrupt, |
@@ -296,7 +296,7 @@ static struct ata_port_operations pdc20230_port_ops = { | |||
296 | 296 | ||
297 | .qc_prep = ata_qc_prep, | 297 | .qc_prep = ata_qc_prep, |
298 | .qc_issue = ata_qc_issue_prot, | 298 | .qc_issue = ata_qc_issue_prot, |
299 | .eng_timeout = ata_eng_timeout, | 299 | |
300 | .data_xfer = pdc_data_xfer_vlb, | 300 | .data_xfer = pdc_data_xfer_vlb, |
301 | 301 | ||
302 | .irq_handler = ata_interrupt, | 302 | .irq_handler = ata_interrupt, |
@@ -348,7 +348,7 @@ static struct ata_port_operations ht6560a_port_ops = { | |||
348 | 348 | ||
349 | .qc_prep = ata_qc_prep, | 349 | .qc_prep = ata_qc_prep, |
350 | .qc_issue = ata_qc_issue_prot, | 350 | .qc_issue = ata_qc_issue_prot, |
351 | .eng_timeout = ata_eng_timeout, | 351 | |
352 | .data_xfer = ata_pio_data_xfer, /* Check vlb/noirq */ | 352 | .data_xfer = ata_pio_data_xfer, /* Check vlb/noirq */ |
353 | 353 | ||
354 | .irq_handler = ata_interrupt, | 354 | .irq_handler = ata_interrupt, |
@@ -411,7 +411,7 @@ static struct ata_port_operations ht6560b_port_ops = { | |||
411 | 411 | ||
412 | .qc_prep = ata_qc_prep, | 412 | .qc_prep = ata_qc_prep, |
413 | .qc_issue = ata_qc_issue_prot, | 413 | .qc_issue = ata_qc_issue_prot, |
414 | .eng_timeout = ata_eng_timeout, | 414 | |
415 | .data_xfer = ata_pio_data_xfer, /* FIXME: Check 32bit and noirq */ | 415 | .data_xfer = ata_pio_data_xfer, /* FIXME: Check 32bit and noirq */ |
416 | 416 | ||
417 | .irq_handler = ata_interrupt, | 417 | .irq_handler = ata_interrupt, |
@@ -529,7 +529,7 @@ static struct ata_port_operations opti82c611a_port_ops = { | |||
529 | 529 | ||
530 | .qc_prep = ata_qc_prep, | 530 | .qc_prep = ata_qc_prep, |
531 | .qc_issue = ata_qc_issue_prot, | 531 | .qc_issue = ata_qc_issue_prot, |
532 | .eng_timeout = ata_eng_timeout, | 532 | |
533 | .data_xfer = ata_pio_data_xfer, | 533 | .data_xfer = ata_pio_data_xfer, |
534 | 534 | ||
535 | .irq_handler = ata_interrupt, | 535 | .irq_handler = ata_interrupt, |
@@ -659,7 +659,7 @@ static struct ata_port_operations opti82c46x_port_ops = { | |||
659 | 659 | ||
660 | .qc_prep = ata_qc_prep, | 660 | .qc_prep = ata_qc_prep, |
661 | .qc_issue = opti82c46x_qc_issue_prot, | 661 | .qc_issue = opti82c46x_qc_issue_prot, |
662 | .eng_timeout = ata_eng_timeout, | 662 | |
663 | .data_xfer = ata_pio_data_xfer, | 663 | .data_xfer = ata_pio_data_xfer, |
664 | 664 | ||
665 | .irq_handler = ata_interrupt, | 665 | .irq_handler = ata_interrupt, |