diff options
author | Akira Iguchi <akira2.iguchi@toshiba.co.jp> | 2007-01-26 02:27:58 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:38 -0500 |
commit | 246ce3b675843e0369643cceb4faeb6cf6d19a30 (patch) | |
tree | b904fe7561e5eacd260d3f175a8f0c3b257598f2 /drivers/ata/sata_via.c | |
parent | 836250069fc0eeebe8b6aed772281535cc6e34f9 (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/sata_via.c')
-rw-r--r-- | drivers/ata/sata_via.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ata/sata_via.c b/drivers/ata/sata_via.c index 6b558195a76f..baca6d79bb0b 100644 --- a/drivers/ata/sata_via.c +++ b/drivers/ata/sata_via.c | |||
@@ -143,6 +143,8 @@ static const struct ata_port_operations vt6420_sata_ops = { | |||
143 | 143 | ||
144 | .irq_handler = ata_interrupt, | 144 | .irq_handler = ata_interrupt, |
145 | .irq_clear = ata_bmdma_irq_clear, | 145 | .irq_clear = ata_bmdma_irq_clear, |
146 | .irq_on = ata_irq_on, | ||
147 | .irq_ack = ata_irq_ack, | ||
146 | 148 | ||
147 | .port_start = ata_port_start, | 149 | .port_start = ata_port_start, |
148 | }; | 150 | }; |
@@ -175,6 +177,8 @@ static const struct ata_port_operations vt6421_pata_ops = { | |||
175 | 177 | ||
176 | .irq_handler = ata_interrupt, | 178 | .irq_handler = ata_interrupt, |
177 | .irq_clear = ata_bmdma_irq_clear, | 179 | .irq_clear = ata_bmdma_irq_clear, |
180 | .irq_on = ata_irq_on, | ||
181 | .irq_ack = ata_irq_ack, | ||
178 | 182 | ||
179 | .port_start = vt6421_port_start, | 183 | .port_start = vt6421_port_start, |
180 | }; | 184 | }; |
@@ -204,6 +208,8 @@ static const struct ata_port_operations vt6421_sata_ops = { | |||
204 | 208 | ||
205 | .irq_handler = ata_interrupt, | 209 | .irq_handler = ata_interrupt, |
206 | .irq_clear = ata_bmdma_irq_clear, | 210 | .irq_clear = ata_bmdma_irq_clear, |
211 | .irq_on = ata_irq_on, | ||
212 | .irq_ack = ata_irq_ack, | ||
207 | 213 | ||
208 | .scr_read = svia_scr_read, | 214 | .scr_read = svia_scr_read, |
209 | .scr_write = svia_scr_write, | 215 | .scr_write = svia_scr_write, |