Searched refs:net_eth_get_hw_capabilities (Results 1 – 15 of 15) sorted by relevance
40 if (net_eth_get_hw_capabilities(iface) & in dsa_is_port_master()65 if (!((net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_MASTER_PORT) || in dsa_check_iface()66 (net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_SLAVE_PORT))) { in dsa_check_iface()
114 caps = net_eth_get_hw_capabilities(iface); in init_vlan()208 caps = net_eth_get_hw_capabilities(iface); in init_app()
169 return (net_eth_get_hw_capabilities(iface) & ETHERNET_HW_VLAN_TAG_STRIP); in eth_is_vlan_tag_stripped()208 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING)) { in ethernet_mcast_monitor_cb()976 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PTP)) { in net_eth_get_ptp_clock()1038 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in net_eth_promisc_mode()1053 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_TXINJECTION_MODE)) { in net_eth_txinjection_mode()1069 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING)) { in net_eth_mac_filter()1100 if (net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE) { in ethernet_init()1105 if (net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING) { in ethernet_init()
62 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in cmd_bridge_addif()
98 !(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in eth_bridge_iface_add()
398 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_VLAN)) { in net_eth_vlan_enable()
22 if (net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_MASTER_PORT) { in iface_cb()
112 caps = net_eth_get_hw_capabilities(iface); in init_vlan()
581 caps = net_eth_get_hw_capabilities(iface); in main()
224 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_LLDP)) { in lldp_check_iface()
940 enum ethernet_hw_caps net_eth_get_hw_capabilities(struct net_if *iface) in net_eth_get_hw_capabilities() function
68 enum ethernet_hw_caps caps = net_eth_get_hw_capabilities(iface); in print_supported_ethernet_capabilities()
924 if (!(net_eth_get_hw_capabilities(iface) & in dsa_ksz8xxx_get_iface()
5362 if (!(net_eth_get_hw_capabilities(iface) & caps)) { in need_calc_checksum()
536 * Added check for null api pointer in :c:func:`net_eth_get_hw_capabilities`, fixing netusb crash.