2006-09-01 Joel Sherrill <joel@OARcorp.com>

* libchip/network/greth.c, libchip/network/open_eth.c,
	libchip/network/smc91111.c: Remove warnings and correct prototype
	added earlier today.
This commit is contained in:
Joel Sherrill
2006-09-01 21:20:47 +00:00
parent d8f86d925a
commit ac5b81c395
4 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2006-09-01 Joel Sherrill <joel@OARcorp.com>
* libchip/network/greth.c, libchip/network/open_eth.c,
libchip/network/smc91111.c: Remove warnings and correct prototype
added earlier today.
2006-09-01 Joel Sherrill <joel@OARcorp.com>
* libchip/network/cs8900.c, libchip/network/greth.c,

View File

@@ -41,7 +41,7 @@
#undef free
#endif
extern void set_vector( rtems_isr_entry, rtems_vector_number, int );
extern rtems_isr_entry set_vector( rtems_isr_entry, rtems_vector_number, int );
/*
#define GRETH_DEBUG

View File

@@ -55,7 +55,7 @@
#undef free
#endif
extern void set_vector( rtems_isr_entry, rtems_vector_number, int );
extern rtems_isr_entry set_vector( rtems_isr_entry, rtems_vector_number, int );
/*
#define OPEN_ETH_DEBUG

View File

@@ -791,7 +791,7 @@ static void smc91111_stats(struct lan91cxx_priv_data *priv)
/*
* Driver ioctl handler
*/
static int smc91111_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
static int smc91111_ioctl(struct ifnet *ifp, ioctl_command_t command, caddr_t data)
{
struct lan91cxx_priv_data *cpd = ifp->if_softc;
int error = 0;