HomeSort by relevance Sort by last modified time
    Searched refs:mcast_mac (Results 1 - 2 of 2) sorted by null

  /external/u-boot/net/
eth_legacy.c 301 u8 mcast_mac[ARP_HLEN]; local
304 mcast_mac[5] = htonl(mcast_ip.s_addr) & 0xff;
305 mcast_mac[4] = (htonl(mcast_ip.s_addr)>>8) & 0xff;
306 mcast_mac[3] = (htonl(mcast_ip.s_addr)>>16) & 0x7f;
307 mcast_mac[2] = 0x5e;
308 mcast_mac[1] = 0x0;
309 mcast_mac[0] = 0x1;
310 return eth_current->mcast(eth_current, mcast_mac, join);
  /external/u-boot/drivers/net/
tsec.c 102 static int tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set)
104 static int tsec_mcast_addr(struct udevice *dev, const u8 *mcast_mac, int set)
112 result = ether_crc(MAC_ADDR_LEN, mcast_mac);

Completed in 207 milliseconds