Lines Matching refs:status
312 * @completion_status: This parameter specifies the core status for the reset
325 /* Save the status of the hard reset from the port. */
839 /* We are required to update the status register last */
844 &iport->viit_registers->status);
1060 enum sci_status status = SCI_SUCCESS;
1087 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1096 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1102 if (status == SCI_SUCCESS) {
1116 status = SCI_FAILURE;
1119 if (status != SCI_SUCCESS)
1122 return status;
1149 enum sci_status status = SCI_FAILURE_INVALID_PHY;
1175 return status;
1176 status = sci_phy_reset(iphy);
1178 if (status != SCI_SUCCESS)
1179 return status;
1195 * status is a failure to add the phy to the port.
1200 enum sci_status status;
1229 status = sci_port_set_phy(iport, iphy);
1231 if (status != SCI_SUCCESS)
1232 return status;
1238 return status;
1240 status = sci_port_set_phy(iport, iphy);
1242 if (status != SCI_SUCCESS)
1243 return status;
1266 * other status is a failure to add the phy to the port.
1271 enum sci_status status;
1280 status = sci_port_clear_phy(iport, iphy);
1281 if (status != SCI_SUCCESS)
1282 return status;
1290 status = sci_port_clear_phy(iport, iphy);
1292 if (status != SCI_SUCCESS)
1293 return status;
1653 enum sci_status status;
1663 status = sci_port_hard_reset(iport, ISCI_PORT_RESET_TIMEOUT);
1667 if (status == SCI_SUCCESS) {
1689 __func__, iport, status);