summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/ide/ata.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 17:44:34 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 17:44:34 +0000
commit397060c9362ebc99f966e15d5164d3696ae44efa (patch)
tree004931843c1dfdf33446006bb6de69d184736258 /c/src/libchip/ide/ata.c
parent2007-02-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-397060c9362ebc99f966e15d5164d3696ae44efa.tar.bz2
2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* libchip/ide/ata.c: Remove superfluous type casts.
Diffstat (limited to 'c/src/libchip/ide/ata.c')
-rw-r--r--c/src/libchip/ide/ata.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/c/src/libchip/ide/ata.c b/c/src/libchip/ide/ata.c
index ab9d7914be..708518bca3 100644
--- a/c/src/libchip/ide/ata.c
+++ b/c/src/libchip/ide/ata.c
@@ -704,11 +704,11 @@ static rtems_irq_connect_data ata_irq_data =
{
0, /* filled out before use... */
- (rtems_irq_hdl) ata_interrupt_handler,/* filled out before use... */
- (rtems_irq_hdl_param) NULL,
- (rtems_irq_enable) ata_interrupt_on,
- (rtems_irq_disable) ata_interrupt_off,
- (rtems_irq_is_enabled) ata_interrupt_isOn
+ ata_interrupt_handler,/* filled out before use... */
+ NULL,
+ ata_interrupt_on,
+ ata_interrupt_off,
+ ata_interrupt_isOn
};
#endif