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. */
840 /* We are required to update the status register last */
845 &iport->viit_registers->status);
1062 enum sci_status status = SCI_SUCCESS;
1089 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1098 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1104 if (status == SCI_SUCCESS) {
1118 status = SCI_FAILURE;
1121 if (status != SCI_SUCCESS)
1124 return status;
1151 enum sci_status status = SCI_FAILURE_INVALID_PHY;
1177 return status;
1178 status = sci_phy_reset(iphy);
1180 if (status != SCI_SUCCESS)
1181 return status;
1197 * status is a failure to add the phy to the port.
1202 enum sci_status status;
1231 status = sci_port_set_phy(iport, iphy);
1233 if (status != SCI_SUCCESS)
1234 return status;
1240 return status;
1242 status = sci_port_set_phy(iport, iphy);
1244 if (status != SCI_SUCCESS)
1245 return status;
1268 * other status is a failure to add the phy to the port.
1273 enum sci_status status;
1282 status = sci_port_clear_phy(iport, iphy);
1283 if (status != SCI_SUCCESS)
1284 return status;
1292 status = sci_port_clear_phy(iport, iphy);
1294 if (status != SCI_SUCCESS)
1295 return status;
1655 enum sci_status status;
1665 status = sci_port_hard_reset(iport, ISCI_PORT_RESET_TIMEOUT);
1669 if (status == SCI_SUCCESS) {
1691 __func__, iport, status);