macipadr.c (678B)
1 /* 2 * 3 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 4 * 5 * Copyright 2007-2019 Broadcom Inc. All rights reserved. 6 * 7 * File: macipadr.c 8 * Purpose: 9 * Requires: 10 */ 11 12 #include <soc/types.h> 13 #include <soc/macipadr.h> 14 15 /* Global declarations */ 16 17 const sal_mac_addr_t _soc_mac_spanning_tree = 18 {0x01, 0x80, 0xc2, 0x00, 0x00, 0x00}; 19 20 const sal_mac_addr_t _soc_mac_all_routers = 21 {0x01, 0x00, 0x5e, 0x00, 0x00, 0x02}; 22 23 const sal_mac_addr_t _soc_mac_all_zeroes = 24 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 25 26 const sal_mac_addr_t _soc_mac_all_ones = 27 {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};