Searched refs:ETH_ZLEN (Results 1 - 8 of 8) sorted by relevance

/u-boot/include/linux/
H A Dif_ether.h35 #define ETH_ZLEN 60 /* Min. octets in frame sans FCS */ macro
/u-boot/drivers/net/
H A Dftmac100.c28 #define ETH_ZLEN 60 macro
209 length = (length < ETH_ZLEN) ? ETH_ZLEN : length;
H A Dbcm6368-eth.c27 #define ETH_ZLEN 60 macro
210 /* pad packets smaller than ETH_ZLEN */
211 if (length < ETH_ZLEN) {
212 memset(packet + length, 0, ETH_ZLEN - length);
213 length = ETH_ZLEN;
H A Drtl8169.c621 while (len < ETH_ZLEN)
632 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
636 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
H A Dftgmac100.c34 #define ETH_ZLEN 60 macro
501 length = (length < ETH_ZLEN) ? ETH_ZLEN : length;
H A Ddesignware.c454 #define ETH_ZLEN 60 macro
483 if (length < ETH_ZLEN) {
484 memset(&((char *)data_start)[length], 0, ETH_ZLEN - length);
485 length = ETH_ZLEN;
H A Drtl8139.c380 while (len < ETH_ZLEN)
454 (rx_size < ETH_ZLEN) ||
/u-boot/drivers/net/bnxt/
H A Dbnxt.c265 if (length >= ETH_ZLEN)
268 memset(((u8 *)packet + length), 0x00, (ETH_ZLEN - length));
270 return ETH_ZLEN;

Completed in 116 milliseconds