Lines Matching defs:token_cmd
1191 struct ixgbe_hic_phy_token_req token_cmd;
1194 token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1195 token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1196 token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1197 token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1198 token_cmd.port_number = hw->bus.lan_id;
1199 token_cmd.command_type = FW_PHY_TOKEN_REQ;
1200 token_cmd.pad = 0;
1201 status = ixgbe_host_interface_command(hw, (uint32_t *)&token_cmd,
1202 sizeof(token_cmd),
1210 if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
1212 if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY) {
1214 token_cmd.hdr.cmd_or_resp.ret_status);
1229 struct ixgbe_hic_phy_token_req token_cmd;
1232 token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1233 token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1234 token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1235 token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1236 token_cmd.port_number = hw->bus.lan_id;
1237 token_cmd.command_type = FW_PHY_TOKEN_REL;
1238 token_cmd.pad = 0;
1239 status = ixgbe_host_interface_command(hw, (uint32_t *)&token_cmd,
1240 sizeof(token_cmd),
1245 if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)