summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 17:46:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-02-06 17:46:47 +0000
commitead7d3a8e5c8b5f61b8b44901255ef33d6818565 (patch)
tree89d09556d7fb5fd71061fa3437301cd8b98d426f /c
parent2007-02-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-ead7d3a8e5c8b5f61b8b44901255ef33d6818565.tar.bz2
2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* libchip/ide/ata.c: Remove superfluous type casts.
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/libchip/ide/ata.c10
2 files changed, 9 insertions, 5 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index 08e4439ce2..720a2500cf 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,9 @@
2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * libchip/ide/ata.c: Remove superfluous type casts.
+
+2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* libchip/ide/ata.c, libchip/network/elnk.c, optman/rtems/no-msg.c:
Use size_t for sizes.
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