From: Tejun Heo Date: Fri, 26 Jan 2007 05:57:31 +0000 (+0900) Subject: sata_via: style clean up, no indirect method call in LLD X-Git-Tag: v2.6.20-rc7~57^2~2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d02598721706ab62a574823479b1f6c26c8980d2;p=linux-block.git 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 Signed-off-by: Jeff Garzik --- 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) * certain way. Leave it alone and just clear pending IRQ. */ ata_chk_status(ap); - ap->ops->irq_clear(ap); + ata_bmdma_irq_clear(ap); } /**