diff options
author | Tejun Heo <htejun@gmail.com> | 2007-02-01 01:06:36 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:38 -0500 |
commit | 0d5ff566779f894ca9937231a181eb31e4adff0e (patch) | |
tree | d1c7495c932581c1d41aa7f0fdb303348da49106 /drivers/ata/pata_serverworks.c | |
parent | 1a68ff13c8a9b517de3fd4187dc525412a6eba1b (diff) |
libata: convert to iomap
Convert libata core layer and LLDs to use iomap.
* managed iomap is used. Pointer to pcim_iomap_table() is cached at
host->iomap and used through out LLDs. This basically replaces
host->mmio_base.
* if possible, pcim_iomap_regions() is used
Most iomap operation conversions are taken from Jeff Garzik
<jgarzik@pobox.com>'s iomap branch.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_serverworks.c')
-rw-r--r-- | drivers/ata/pata_serverworks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pata_serverworks.c b/drivers/ata/pata_serverworks.c index 46ea1e8af4f4..c41a1d3b5b7d 100644 --- a/drivers/ata/pata_serverworks.c +++ b/drivers/ata/pata_serverworks.c | |||
@@ -348,7 +348,7 @@ static struct ata_port_operations serverworks_osb4_port_ops = { | |||
348 | .qc_prep = ata_qc_prep, | 348 | .qc_prep = ata_qc_prep, |
349 | .qc_issue = ata_qc_issue_prot, | 349 | .qc_issue = ata_qc_issue_prot, |
350 | 350 | ||
351 | .data_xfer = ata_pio_data_xfer, | 351 | .data_xfer = ata_data_xfer, |
352 | 352 | ||
353 | .irq_handler = ata_interrupt, | 353 | .irq_handler = ata_interrupt, |
354 | .irq_clear = ata_bmdma_irq_clear, | 354 | .irq_clear = ata_bmdma_irq_clear, |
@@ -381,7 +381,7 @@ static struct ata_port_operations serverworks_csb_port_ops = { | |||
381 | .qc_prep = ata_qc_prep, | 381 | .qc_prep = ata_qc_prep, |
382 | .qc_issue = ata_qc_issue_prot, | 382 | .qc_issue = ata_qc_issue_prot, |
383 | 383 | ||
384 | .data_xfer = ata_pio_data_xfer, | 384 | .data_xfer = ata_data_xfer, |
385 | 385 | ||
386 | .irq_handler = ata_interrupt, | 386 | .irq_handler = ata_interrupt, |
387 | .irq_clear = ata_bmdma_irq_clear, | 387 | .irq_clear = ata_bmdma_irq_clear, |