Lines Matching refs:eth_fec
765 unsigned int eth_fec = 0; in fwcap_to_eth_fec() local
768 eth_fec |= ETHTOOL_FEC_RS; in fwcap_to_eth_fec()
770 eth_fec |= ETHTOOL_FEC_BASER; in fwcap_to_eth_fec()
773 if (!eth_fec) in fwcap_to_eth_fec()
774 eth_fec = ETHTOOL_FEC_OFF; in fwcap_to_eth_fec()
776 return eth_fec; in fwcap_to_eth_fec()
782 unsigned int eth_fec = 0; in cc_to_eth_fec() local
785 eth_fec |= ETHTOOL_FEC_AUTO; in cc_to_eth_fec()
787 eth_fec |= ETHTOOL_FEC_RS; in cc_to_eth_fec()
789 eth_fec |= ETHTOOL_FEC_BASER; in cc_to_eth_fec()
792 if (!eth_fec) in cc_to_eth_fec()
793 eth_fec = ETHTOOL_FEC_OFF; in cc_to_eth_fec()
795 return eth_fec; in cc_to_eth_fec()
799 static inline unsigned int eth_to_cc_fec(unsigned int eth_fec) in eth_to_cc_fec() argument
803 if (eth_fec & ETHTOOL_FEC_OFF) in eth_to_cc_fec()
806 if (eth_fec & ETHTOOL_FEC_AUTO) in eth_to_cc_fec()
808 if (eth_fec & ETHTOOL_FEC_RS) in eth_to_cc_fec()
810 if (eth_fec & ETHTOOL_FEC_BASER) in eth_to_cc_fec()