Lines Matching refs:eth_fec
1323 u32 eth_fec = 0; in loc_to_eth_fec() local
1326 eth_fec |= ETHTOOL_FEC_AUTO; in loc_to_eth_fec()
1328 eth_fec |= ETHTOOL_FEC_RS; in loc_to_eth_fec()
1330 eth_fec |= ETHTOOL_FEC_BASER; in loc_to_eth_fec()
1333 if (!eth_fec) in loc_to_eth_fec()
1334 eth_fec = ETHTOOL_FEC_OFF; in loc_to_eth_fec()
1336 return eth_fec; in loc_to_eth_fec()
1340 static unsigned int eth_to_loc_fec(unsigned int eth_fec) in eth_to_loc_fec() argument
1344 if (eth_fec & ETHTOOL_FEC_OFF) in eth_to_loc_fec()
1347 if (eth_fec & ETHTOOL_FEC_AUTO) in eth_to_loc_fec()
1349 if (eth_fec & ETHTOOL_FEC_RS) in eth_to_loc_fec()
1351 if (eth_fec & ETHTOOL_FEC_BASER) in eth_to_loc_fec()