Lines Matching refs:eth_fec
695 unsigned int eth_fec = 0; in fwcap_to_eth_fec() local
698 eth_fec |= ETHTOOL_FEC_RS; in fwcap_to_eth_fec()
700 eth_fec |= ETHTOOL_FEC_BASER; in fwcap_to_eth_fec()
703 if (!eth_fec) in fwcap_to_eth_fec()
704 eth_fec = ETHTOOL_FEC_OFF; in fwcap_to_eth_fec()
706 return eth_fec; in fwcap_to_eth_fec()
712 unsigned int eth_fec = 0; in cc_to_eth_fec() local
715 eth_fec |= ETHTOOL_FEC_AUTO; in cc_to_eth_fec()
717 eth_fec |= ETHTOOL_FEC_RS; in cc_to_eth_fec()
719 eth_fec |= ETHTOOL_FEC_BASER; in cc_to_eth_fec()
722 if (!eth_fec) in cc_to_eth_fec()
723 eth_fec = ETHTOOL_FEC_OFF; in cc_to_eth_fec()
725 return eth_fec; in cc_to_eth_fec()
729 static inline unsigned int eth_to_cc_fec(unsigned int eth_fec) in eth_to_cc_fec() argument
733 if (eth_fec & ETHTOOL_FEC_OFF) in eth_to_cc_fec()
736 if (eth_fec & ETHTOOL_FEC_AUTO) in eth_to_cc_fec()
738 if (eth_fec & ETHTOOL_FEC_RS) in eth_to_cc_fec()
740 if (eth_fec & ETHTOOL_FEC_BASER) in eth_to_cc_fec()