Lines Matching refs:eth_fec
1664 u32 eth_fec = 0; in loc_to_eth_fec() local
1667 eth_fec |= ETHTOOL_FEC_AUTO; in loc_to_eth_fec()
1669 eth_fec |= ETHTOOL_FEC_RS; in loc_to_eth_fec()
1671 eth_fec |= ETHTOOL_FEC_LLRS; in loc_to_eth_fec()
1673 eth_fec |= ETHTOOL_FEC_BASER; in loc_to_eth_fec()
1675 eth_fec |= ETHTOOL_FEC_OFF; in loc_to_eth_fec()
1677 return eth_fec; in loc_to_eth_fec()
1681 static unsigned int eth_to_loc_fec(unsigned int eth_fec) in eth_to_loc_fec() argument
1685 if (eth_fec & ETHTOOL_FEC_OFF) in eth_to_loc_fec()
1687 if (eth_fec & ETHTOOL_FEC_AUTO) in eth_to_loc_fec()
1689 if (eth_fec & ETHTOOL_FEC_RS) in eth_to_loc_fec()
1691 if (eth_fec & ETHTOOL_FEC_LLRS) in eth_to_loc_fec()
1693 if (eth_fec & ETHTOOL_FEC_BASER) in eth_to_loc_fec()