Lines Matching refs:status

47  * Attach State Information. These states are used to track the status of the
86 int status;
94 status = ddi_soft_state_zalloc(hci1394_statep, instance);
95 if (status != DDI_SUCCESS) {
118 status = hci1394_isr_init(soft_state);
119 if (status != DDI_SUCCESS) {
129 status = ddi_create_minor_node(dip, "devctl", S_IFCHR,
131 if (status != DDI_SUCCESS) {
141 status = hci1394_hardware_init(soft_state);
142 if (status != DDI_SUCCESS) {
156 status = hci1394_resmap_get(soft_state);
157 if (status != DDI_SUCCESS) {
167 status = h1394_attach(&soft_state->halinfo, DDI_ATTACH,
169 if (status != DDI_SUCCESS) {
182 status = hci1394_isr_handler_init(soft_state);
183 if (status != DDI_SUCCESS) {
203 status = hci1394_ohci_startup(soft_state->ohci);
204 if (status != DDI_SUCCESS) {
229 status = hci1394_hardware_resume(soft_state);
230 if (status != DDI_SUCCESS) {
246 status = hci1394_ohci_startup(soft_state->ohci);
247 if (status != DDI_SUCCESS) {
257 status = h1394_attach(&soft_state->halinfo, DDI_RESUME,
259 if (status != DDI_SUCCESS) {
405 int status;
413 status = hci1394_pci_init(soft_state);
414 if (status != DDI_SUCCESS) {
423 status = hci1394_ohci_init(soft_state, &soft_state->drvinfo,
425 if (status != DDI_SUCCESS) {
439 status = hci1394_async_init(&soft_state->drvinfo, soft_state->ohci,
441 if (status != DDI_SUCCESS) {
457 status = hci1394_vendor_init(&soft_state->drvinfo, soft_state->ohci,
459 if (status != DDI_SUCCESS) {
488 int status;
499 status = hci1394_ohci_resume(soft_state->ohci);
500 if (status != DDI_SUCCESS) {
512 status = hci1394_async_resume(soft_state->async);
513 if (status != DDI_SUCCESS) {
522 status = hci1394_vendor_resume(soft_state->vendor);
523 if (status != DDI_SUCCESS) {
545 int status;
555 status = pci_config_setup(soft_state->drvinfo.di_dip,
557 if (status != DDI_SUCCESS) {
704 int status;
725 status = ddi_prop_lookup_int_array(DDI_DEV_T_ANY,
728 if (status != DDI_PROP_SUCCESS) {
827 * Return status of bit "statebit". Is it set or not?
833 int status;
839 status = B_FALSE;
841 status = B_TRUE;
843 return (status);
854 int status;
861 status = hci1394_statebit_tst(attach_state, STATE_STARTUP);
862 if (status == B_TRUE) {
877 status = hci1394_statebit_tst(attach_state, STATE_ISR_HANDLER);
878 if (status == B_TRUE) {
882 status = hci1394_statebit_tst(attach_state, STATE_H1394_ATTACH);
883 if (status == B_TRUE) {
888 status = hci1394_statebit_tst(attach_state, STATE_HW_INIT);
889 if (status == B_TRUE) {
893 status = hci1394_statebit_tst(attach_state, STATE_MINOR_NODE);
894 if (status == B_TRUE) {
898 status = hci1394_statebit_tst(attach_state, STATE_ISR_INIT);
899 if (status == B_TRUE) {
903 status = hci1394_statebit_tst(attach_state, STATE_PHASE2);
904 if (status == B_TRUE) {
908 status = hci1394_statebit_tst(attach_state, STATE_ZALLOC);
909 if (status == B_TRUE) {