diff options
author | Wolfgang Denk <wd@denx.de> | 2007-04-04 02:09:30 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-04-04 02:09:30 +0200 |
commit | 31c98a88228021b314c89ebb8104fb6473da4471 (patch) | |
tree | 489bf14db8b98e3388d2d4a4d67a86636483d27b /board/xilinx | |
parent | c8f228016202aff5ff09cdeeabe8cffd8d898510 (diff) |
Minor coding style cleanup.
Diffstat (limited to 'board/xilinx')
-rw-r--r-- | board/xilinx/xilinx_enet/emac_adapter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/xilinx_enet/emac_adapter.c b/board/xilinx/xilinx_enet/emac_adapter.c index 5a7e59e6340..d3403038e65 100644 --- a/board/xilinx/xilinx_enet/emac_adapter.c +++ b/board/xilinx/xilinx_enet/emac_adapter.c @@ -147,7 +147,7 @@ eth_rx(void) RecvFrameLength = PKTSIZE; Result = XEmac_PollRecv(&Emac, (u8 *) etherrxbuff, &RecvFrameLength); if (Result == XST_SUCCESS) { -#ifndef CONFIG_EMACLITE +#ifndef CONFIG_EMACLITE NetReceive((uchar *)etherrxbuff, RecvFrameLength); #else NetReceive(etherrxbuff, RecvFrameLength); |