2002-11-04 Joel Sherrill <joel@OARcorp.com>

* console/console.c, network/ne2000.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-04 14:25:57 +00:00
parent 99c79c3dcc
commit 202ed852af
3 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2002-11-04 Joel Sherrill <joel@OARcorp.com>
* console/console.c, network/ne2000.c: Removed warnings.
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: Removed warnings.

View File

@@ -35,6 +35,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <rtems/error.h>
/* workaround for gcc development tools */
#undef __assert

View File

@@ -438,7 +438,7 @@ ne_init_hardware (struct ne_softc *sc)
/* Set up interrupts. */
irq.name = sc->irno;
irq.hdl = ne_interrupt_handler;
irq.hdl = (rtems_irq_hdl)ne_interrupt_handler;
irq.on = ne_interrupt_on;
irq.off = ne_interrupt_off;
irq.isOn = ne_interrupt_is_on;