aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_hpt37x.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2007-08-22 17:55:41 -0400
committerJeff Garzik <jeff@garzik.org>2007-10-12 14:55:36 -0400
commit81ad1837b590775336f68eafcae8dab13a975b3a (patch)
treeacdbe73364759c291eaf2ad40c708374e23cddfe /drivers/ata/pata_hpt37x.c
parentac8869d56d95a8c74403e6f7a47d74fcfcc1b988 (diff)
libata: Switch most of the remaining SFF drivers to ata_sff_port_start
This avoids allocating DMA buffers if not needed but at the moment is mostly just a neatness item. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_hpt37x.c')
-rw-r--r--drivers/ata/pata_hpt37x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ata/pata_hpt37x.c b/drivers/ata/pata_hpt37x.c
index 65c0cb21f6a0..e61cb1fd57b2 100644
--- a/drivers/ata/pata_hpt37x.c
+++ b/drivers/ata/pata_hpt37x.c
@@ -673,7 +673,7 @@ static struct ata_port_operations hpt370_port_ops = {
673 .irq_clear = ata_bmdma_irq_clear, 673 .irq_clear = ata_bmdma_irq_clear,
674 .irq_on = ata_irq_on, 674 .irq_on = ata_irq_on,
675 675
676 .port_start = ata_port_start, 676 .port_start = ata_sff_port_start,
677}; 677};
678 678
679/* 679/*
@@ -710,7 +710,7 @@ static struct ata_port_operations hpt370a_port_ops = {
710 .irq_clear = ata_bmdma_irq_clear, 710 .irq_clear = ata_bmdma_irq_clear,
711 .irq_on = ata_irq_on, 711 .irq_on = ata_irq_on,
712 712
713 .port_start = ata_port_start, 713 .port_start = ata_sff_port_start,
714}; 714};
715 715
716/* 716/*
@@ -748,7 +748,7 @@ static struct ata_port_operations hpt372_port_ops = {
748 .irq_clear = ata_bmdma_irq_clear, 748 .irq_clear = ata_bmdma_irq_clear,
749 .irq_on = ata_irq_on, 749 .irq_on = ata_irq_on,
750 750
751 .port_start = ata_port_start, 751 .port_start = ata_sff_port_start,
752}; 752};
753 753
754/* 754/*
@@ -786,7 +786,7 @@ static struct ata_port_operations hpt374_port_ops = {
786 .irq_clear = ata_bmdma_irq_clear, 786 .irq_clear = ata_bmdma_irq_clear,
787 .irq_on = ata_irq_on, 787 .irq_on = ata_irq_on,
788 788
789 .port_start = ata_port_start, 789 .port_start = ata_sff_port_start,
790}; 790};
791 791
792/** 792/**