2007-07-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* console/console.c: Fix typo accidentally introduced.
	* network_5200/network.c: Fix warning.
This commit is contained in:
Joel Sherrill
2007-07-11 19:36:34 +00:00
parent 6d46a90dbc
commit 0e1a67e7a2
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-07-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* console/console.c: Fix typo accidentally introduced.
* network_5200/network.c: Fix warning.
2007-07-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/linkcmds.ep5200: Add .jcr section.

View File

@@ -130,7 +130,7 @@ uint32_t mpc5200_uart_avail_mask = GEN5200_UART_AVAIL_MASK;
int minor;
uint8_t *chrptr;
uuchrptr = memchr(psc_minor_to_irqname, name, sizeof(psc_minor_to_irqname));
chrptr = memchr(psc_minor_to_irqname, name, sizeof(psc_minor_to_irqname));
if (chrptr != NULL) {
minor = chrptr - psc_minor_to_irqname;
} else {

View File

@@ -103,7 +103,7 @@ extern TaskBDIdxTable_t TaskBDIdxTable[MAX_TASKS];
static TaskId rxTaskId; /* SDMA RX task ID */
static TaskId txTaskId; /* SDMA TX task ID */
#define ETH_DEBUG
/* #define ETH_DEBUG */
/*
* Number of interfaces supported by this driver
@@ -745,6 +745,7 @@ static void mpc5200_fec_retire_tbd(struct mpc5200_enet_struct *sc,
}
}
#if 0
/*
* Function: mpc5200_fec_tx_bd_requeue
*
@@ -776,6 +777,7 @@ static void mpc5200_fec_tx_bd_requeue(struct mpc5200_enet_struct *sc)
}
}
}
#endif
static void mpc5200_fec_sendpacket(struct ifnet *ifp,struct mbuf *m) {
struct mpc5200_enet_struct *sc = ifp->if_softc;