Lines Matching refs:eth_fec
1320 u32 eth_fec = 0; in loc_to_eth_fec() local
1323 eth_fec |= ETHTOOL_FEC_AUTO; in loc_to_eth_fec()
1325 eth_fec |= ETHTOOL_FEC_RS; in loc_to_eth_fec()
1327 eth_fec |= ETHTOOL_FEC_BASER; in loc_to_eth_fec()
1330 if (!eth_fec) in loc_to_eth_fec()
1331 eth_fec = ETHTOOL_FEC_OFF; in loc_to_eth_fec()
1333 return eth_fec; in loc_to_eth_fec()
1337 static unsigned int eth_to_loc_fec(unsigned int eth_fec) in eth_to_loc_fec() argument
1341 if (eth_fec & ETHTOOL_FEC_OFF) in eth_to_loc_fec()
1344 if (eth_fec & ETHTOOL_FEC_AUTO) in eth_to_loc_fec()
1346 if (eth_fec & ETHTOOL_FEC_RS) in eth_to_loc_fec()
1348 if (eth_fec & ETHTOOL_FEC_BASER) in eth_to_loc_fec()