diff options
author | wdenk <wdenk> | 2004-07-10 21:45:47 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-10 21:45:47 +0000 |
commit | 8b07a1103dc7dcadc80c4a9681cfa7d225e8e224 (patch) | |
tree | 8017b2826d62ec6d8289b8f1170627dc5c21ffcf /cpu/mpc85xx/tsec.c | |
parent | 0ac6f8b7498d3608bd1de2280a014e9e23d7b1f2 (diff) | |
download | u-boot-imx-8b07a1103dc7dcadc80c4a9681cfa7d225e8e224.zip u-boot-imx-8b07a1103dc7dcadc80c4a9681cfa7d225e8e224.tar.gz u-boot-imx-8b07a1103dc7dcadc80c4a9681cfa7d225e8e224.tar.bz2 |
* Patch by Fred Klatt, 25 Jun 2004:
Add support for WindRiver's SBC8560 board
* Patch by Nicolas Lacressonniere, 24 Jun 2004
Small Bugs fixes for "at91rm9200dk" board:
- Timing modifications for SPI DataFlash access
- Fix NAND flash detection bug
* Patch by Nicolas Lacressonniere, 24 Jun 2004:
Add Support for Flash AT49BV6416 for AT91RM9200DK board
Diffstat (limited to 'cpu/mpc85xx/tsec.c')
-rw-r--r-- | cpu/mpc85xx/tsec.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cpu/mpc85xx/tsec.c b/cpu/mpc85xx/tsec.c index 0d858ed..3255db8 100644 --- a/cpu/mpc85xx/tsec.c +++ b/cpu/mpc85xx/tsec.c @@ -25,13 +25,6 @@ #define TX_BUF_CNT 2 -#undef TSEC_DEBUG -#ifdef TSEC_DEBUG -#define DBGPRINT(x,y) printf(x,y) -#else -#define DBGPRINT(x,y) -#endif - static uint rxIdx; /* index of the current RX buffer */ static uint txIdx; /* index of the current TX buffer */ @@ -564,7 +557,7 @@ static int tsec_send(struct eth_device* dev, volatile void *packet, int length) /* Find an empty buffer descriptor */ for(i=0; rtx.txbd[txIdx].status & TXBD_READY; i++) { if (i >= TOUT_LOOP) { - DBGPRINT("%s: tsec: tx buffers full\n", dev->name); + debug ("%s: tsec: tx buffers full\n", dev->name); return result; } } @@ -579,7 +572,7 @@ static int tsec_send(struct eth_device* dev, volatile void *packet, int length) /* Wait for buffer to be transmitted */ for(i=0; rtx.txbd[txIdx].status & TXBD_READY; i++) { if (i >= TOUT_LOOP) { - DBGPRINT("%s: tsec: tx error\n", dev->name); + debug ("%s: tsec: tx error\n", dev->name); return result; } } |