diff options
| author | Michal Simek <monstr@monstr.eu> | 2011-09-12 21:10:04 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-15 22:09:27 +0200 | 
| commit | 80439252040b8384c4c3a2906ae94ab51c04850f (patch) | |
| tree | ebe793e8bca643881d7a09dbbc37e43f25c0f996 /drivers/net/xilinx_emaclite.c | |
| parent | 947324b9ca19305fdc738f9034a98e643dc8188c (diff) | |
| download | olio-uboot-2014.01-80439252040b8384c4c3a2906ae94ab51c04850f.tar.xz olio-uboot-2014.01-80439252040b8384c4c3a2906ae94ab51c04850f.zip | |
net: emaclite: Use PKTSIZE directly
Do not setup additional ENET_MAX_MTU macro.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'drivers/net/xilinx_emaclite.c')
| -rw-r--r-- | drivers/net/xilinx_emaclite.c | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index 93424761b..aa9ac4b2e 100644 --- a/drivers/net/xilinx_emaclite.c +++ b/drivers/net/xilinx_emaclite.c @@ -31,8 +31,6 @@  #undef DEBUG -#define ENET_MAX_MTU		PKTSIZE -#define ENET_MAX_MTU_ALIGNED	PKTSIZE_ALIGN  #define ENET_ADDR_LENGTH	6  /* EmacLite constants */ @@ -212,8 +210,8 @@ static int emaclite_send (struct eth_device *dev, volatile void *ptr, int len)  	u32 maxtry = 1000; -	if (len > ENET_MAX_MTU) -		len = ENET_MAX_MTU; +	if (len > PKTSIZE) +		len = PKTSIZE;  	while (!xemaclite_txbufferavailable(dev) && maxtry) {  		udelay (10); @@ -328,8 +326,8 @@ static int emaclite_recv(struct eth_device *dev)  			debug ("IP Packet\n");  			break;  		default: -			debug ("Other Packet\n"); -			length = ENET_MAX_MTU; +			debug("Other Packet\n"); +			length = PKTSIZE;  			break;  	} |