diff options
author | Tejun Heo <htejun@gmail.com> | 2007-01-26 00:57:31 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-01-26 17:24:07 -0500 |
commit | d02598721706ab62a574823479b1f6c26c8980d2 (patch) | |
tree | c1cd484df805f2b80a9779665217dd3e9ca38198 /drivers/ata/sata_via.c | |
parent | 6096b63e2584796341baf7e7735f98d387f489f2 (diff) |
sata_via: style clean up, no indirect method call in LLD
Call ata_bmdma_irq_clear() directly instead of through
ap->ops->irq_clear() according to libata style guideline.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/sata_via.c')
-rw-r--r-- | drivers/ata/sata_via.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_via.c b/drivers/ata/sata_via.c index 55b01236a6f0..d3d5c0d57032 100644 --- a/drivers/ata/sata_via.c +++ b/drivers/ata/sata_via.c | |||
@@ -211,7 +211,7 @@ static void svia_noop_freeze(struct ata_port *ap) | |||
211 | * certain way. Leave it alone and just clear pending IRQ. | 211 | * certain way. Leave it alone and just clear pending IRQ. |
212 | */ | 212 | */ |
213 | ata_chk_status(ap); | 213 | ata_chk_status(ap); |
214 | ap->ops->irq_clear(ap); | 214 | ata_bmdma_irq_clear(ap); |
215 | } | 215 | } |
216 | 216 | ||
217 | /** | 217 | /** |