2007-03-30 Ralf Corsépius <ralf.corsepius@rtems.org>

* ne2000/ne2000.c: Remove typecast.
This commit is contained in:
Ralf Corsepius
2007-03-30 09:58:53 +00:00
parent 7d169ecd1a
commit b620d34e19
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2007-03-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* ne2000/ne2000.c: Remove typecast.
2007-03-11 Joel Sherrill <joel@OARcorp.com> 2007-03-11 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: Remove assignments of * startup/bspstart.c: Remove assignments of

View File

@@ -521,7 +521,7 @@ ne_init_irq_handler(int irno)
printk("ne_init_irq_handler(%d)\n", irno); printk("ne_init_irq_handler(%d)\n", irno);
#endif #endif
irq.name = irno; irq.name = irno;
irq.hdl = (rtems_irq_hdl)ne_interrupt_handler; irq.hdl = ne_interrupt_handler;
irq.handle = irno; irq.handle = irno;
irq.on = ne_interrupt_on; irq.on = ne_interrupt_on;
irq.off = ne_interrupt_off; irq.off = ne_interrupt_off;