2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>

* libchip/ide/ata.c: Remove superfluous type casts.
This commit is contained in:
Ralf Corsepius
2007-02-06 17:44:34 +00:00
parent adf1ce5c5a
commit 397060c936
2 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
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> 2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* libchip/ide/ata.c, libchip/network/elnk.c, optman/rtems/no-msg.c: * libchip/ide/ata.c, libchip/network/elnk.c, optman/rtems/no-msg.c:

View File

@@ -704,11 +704,11 @@ static rtems_irq_connect_data ata_irq_data =
{ {
0, /* filled out before use... */ 0, /* filled out before use... */
(rtems_irq_hdl) ata_interrupt_handler,/* filled out before use... */ ata_interrupt_handler,/* filled out before use... */
(rtems_irq_hdl_param) NULL, NULL,
(rtems_irq_enable) ata_interrupt_on, ata_interrupt_on,
(rtems_irq_disable) ata_interrupt_off, ata_interrupt_off,
(rtems_irq_is_enabled) ata_interrupt_isOn ata_interrupt_isOn
}; };
#endif #endif