port.h (667B)
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-2020 Broadcom Inc. All rights reserved. 6 * 7 * File: port.h 8 * Purpose: PORT internal definitions to the BCM library. 9 */ 10 11 #ifndef _BCM_INT_DFE_PORT_H_ 12 #define _BCM_INT_DFE_PORT_H_ 13 14 15 /* Attributes taht can be controlled on BCM88750*/ 16 #define _BCM_DFE_PORT_ATTRS \ 17 (BCM_PORT_ATTR_ENABLE_MASK | \ 18 BCM_PORT_ATTR_SPEED_MASK | \ 19 BCM_PORT_ATTR_LINKSCAN_MASK | \ 20 BCM_PORT_ATTR_LOOPBACK_MASK) 21 22 int _bcm_dfe_port_deinit(int unit); 23 24 #endif /*_BCM_INT_DFE_PORT_H_*/