Lines Matching refs:plca
107 const struct phy_plca_cfg *plca = &data->plca_cfg;
109 if ((plca->version >= 0 &&
110 nla_put_u16(skb, ETHTOOL_A_PLCA_VERSION, plca->version)) ||
111 (plca->enabled >= 0 &&
112 nla_put_u8(skb, ETHTOOL_A_PLCA_ENABLED, !!plca->enabled)) ||
113 (plca->node_id >= 0 &&
114 nla_put_u32(skb, ETHTOOL_A_PLCA_NODE_ID, plca->node_id)) ||
115 (plca->node_cnt >= 0 &&
116 nla_put_u32(skb, ETHTOOL_A_PLCA_NODE_CNT, plca->node_cnt)) ||
117 (plca->to_tmr >= 0 &&
118 nla_put_u32(skb, ETHTOOL_A_PLCA_TO_TMR, plca->to_tmr)) ||
119 (plca->burst_cnt >= 0 &&
120 nla_put_u32(skb, ETHTOOL_A_PLCA_BURST_CNT, plca->burst_cnt)) ||
121 (plca->burst_tmr >= 0 &&
122 nla_put_u32(skb, ETHTOOL_A_PLCA_BURST_TMR, plca->burst_tmr)))