Home
last modified time | relevance | path

Searched refs:mac_addr_h (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/net/ethernet/marvell/mvpp2/
H A Dmvpp2_main.c4694 u32 mac_addr_l, mac_addr_m, mac_addr_h; in mvpp21_get_mac_address() local
4698 mac_addr_h = readl(port->priv->lms_base + MVPP2_SRC_ADDR_HIGH); in mvpp21_get_mac_address()
4699 addr[0] = (mac_addr_h >> 24) & 0xFF; in mvpp21_get_mac_address()
4700 addr[1] = (mac_addr_h >> 16) & 0xFF; in mvpp21_get_mac_address()
4701 addr[2] = (mac_addr_h >> 8) & 0xFF; in mvpp21_get_mac_address()
4702 addr[3] = mac_addr_h & 0xFF; in mvpp21_get_mac_address()