Lines Matching refs:status

256 	uchar status;
1760 uchar done_status; /* Completion status. */
1761 uchar scsi_status; /* SCSI status byte. */
1762 uchar host_status; /* Ucode host status. */
3270 /* Indicate whether the device has returned queue full status. */
4300 * Clear the idle command status which is set by the microcode
4356 int status;
4362 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_START, 0L);
4363 if (status != ADV_TRUE) {
4364 return status;
4379 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_END, 0L);
4380 if (status != ADV_TRUE) {
4381 return status;
4386 return status;
4957 mdelay(10); /* Wait for 10ms before checking status. */
5445 mdelay(10); /* Wait for 10ms before checking status. */
5821 int status;
5868 status = AdvInitAsc38C1600Driver(asc_dvc);
5870 status = AdvInitAsc38C0800Driver(asc_dvc);
5872 status = AdvInitAsc3550Driver(asc_dvc);
5875 /* Translate initialization return value to status value. */
5876 if (status == 0) {
5877 status = ADV_TRUE;
5879 status = ADV_FALSE;
5901 return status;
5994 * 'done_status' contains the command's ending status.
6027 * status byte returned by host drivers right
6029 * use right shifted status byte definitions.
6034 * the status byte as it is defined by SCSI.
6178 * Request finished with good status and the queue was not
6179 * DMAed to host memory by the firmware. Set all status fields
6180 * to indicate good status.
6763 * 'qdonep' contains the command's ending status.
6795 * status byte returned by host drivers right
6797 * use right shifted status byte definitions.
6802 * the status byte as it is defined by SCSI.
7018 int status;
7074 while (((status =
7079 if ((status =
7083 } while (status == 0x11);
7085 if ((status & 0x80) != 0)
7110 int status;
7124 status = AscInitAsc1000Driver(asc_dvc);
7129 "0x%x, status: 0x%x\n", asc_dvc->err_code,
7130 status);
7132 } else if (status) {
7134 "0x%x\n", status);
7983 scsiq->q1.status = QS_FREE;
8548 * This function always returns 0. Command return status is saved
10717 int status;
10770 status = AdvInitFrom38C1600EEP(asc_dvc);
10772 status = AdvInitFrom38C0800EEP(asc_dvc);
10774 status = AdvInitFrom3550EEP(asc_dvc);
10776 warn_code |= status;