Lines Matching defs:token_cmd
1400 struct ixgbe_hic_phy_token_req token_cmd;
1403 token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1404 token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1405 token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1406 token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1407 token_cmd.port_number = hw->bus.lan_id;
1408 token_cmd.command_type = FW_PHY_TOKEN_REQ;
1409 token_cmd.pad = 0;
1410 status = ixgbe_host_interface_command(hw, (u32 *)&token_cmd,
1411 sizeof(token_cmd),
1419 if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)
1421 if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY) {
1423 token_cmd.hdr.cmd_or_resp.ret_status);
1438 struct ixgbe_hic_phy_token_req token_cmd;
1441 token_cmd.hdr.cmd = FW_PHY_TOKEN_REQ_CMD;
1442 token_cmd.hdr.buf_len = FW_PHY_TOKEN_REQ_LEN;
1443 token_cmd.hdr.cmd_or_resp.cmd_resv = 0;
1444 token_cmd.hdr.checksum = FW_DEFAULT_CHECKSUM;
1445 token_cmd.port_number = hw->bus.lan_id;
1446 token_cmd.command_type = FW_PHY_TOKEN_REL;
1447 token_cmd.pad = 0;
1448 status = ixgbe_host_interface_command(hw, (u32 *)&token_cmd,
1449 sizeof(token_cmd),
1454 if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK)