aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/ata_piix.c
diff options
context:
space:
mode:
authorAkira Iguchi <akira2.iguchi@toshiba.co.jp>2007-01-26 02:27:58 -0500
committerJeff Garzik <jeff@garzik.org>2007-02-09 17:39:38 -0500
commit246ce3b675843e0369643cceb4faeb6cf6d19a30 (patch)
treeb904fe7561e5eacd260d3f175a8f0c3b257598f2 /drivers/ata/ata_piix.c
parent836250069fc0eeebe8b6aed772281535cc6e34f9 (diff)
libata: add another IRQ calls (libata drivers)
This patch is against each libata driver. Two IRQ calls are added in ata_port_operations. - irq_on() is used to enable interrupts. - irq_ack() is used to acknowledge a device interrupt. In most drivers, ata_irq_on() and ata_irq_ack() are used for irq_on and irq_ack respectively. In some drivers (ex: ahci, sata_sil24) which cannot use them as is, ata_dummy_irq_on() and ata_dummy_irq_ack() are used. Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp> Signed-off-by: Akira Iguchi <akira2.iguchi@toshiba.co.jp> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ata_piix.c')
-rw-r--r--drivers/ata/ata_piix.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c
index 37fe6c2b8ca..c528d42ee10 100644
--- a/drivers/ata/ata_piix.c
+++ b/drivers/ata/ata_piix.c
@@ -308,6 +308,8 @@ static const struct ata_port_operations piix_pata_ops = {
308 308
309 .irq_handler = ata_interrupt, 309 .irq_handler = ata_interrupt,
310 .irq_clear = ata_bmdma_irq_clear, 310 .irq_clear = ata_bmdma_irq_clear,
311 .irq_on = ata_irq_on,
312 .irq_ack = ata_irq_ack,
311 313
312 .port_start = ata_port_start, 314 .port_start = ata_port_start,
313}; 315};
@@ -339,6 +341,8 @@ static const struct ata_port_operations ich_pata_ops = {
339 341
340 .irq_handler = ata_interrupt, 342 .irq_handler = ata_interrupt,
341 .irq_clear = ata_bmdma_irq_clear, 343 .irq_clear = ata_bmdma_irq_clear,
344 .irq_on = ata_irq_on,
345 .irq_ack = ata_irq_ack,
342 346
343 .port_start = ata_port_start, 347 .port_start = ata_port_start,
344}; 348};
@@ -367,6 +371,8 @@ static const struct ata_port_operations piix_sata_ops = {
367 371
368 .irq_handler = ata_interrupt, 372 .irq_handler = ata_interrupt,
369 .irq_clear = ata_bmdma_irq_clear, 373 .irq_clear = ata_bmdma_irq_clear,
374 .irq_on = ata_irq_on,
375 .irq_ack = ata_irq_ack,
370 376
371 .port_start = ata_port_start, 377 .port_start = ata_port_start,
372}; 378};