Lines Matching refs:status
414 * Retrieves the address ranges used to access control and status
947 int status; /* return code from adapter port control call */
967 status = dfx_hw_port_ctrl_req(bp,
972 if ((status != DFX_K_SUCCESS) || (host_data == 2))
1630 PI_UINT32 port_status; /* PDQ port status register value */
1631 PI_UINT32 halt_id; /* PDQ port status halt ID */
1633 /* Read the latest port status */
1727 * or if the port status indicates that the adapter is halted. The driver
1736 PI_UINT32 state; /* current adap state (from port status) */
1959 u32 status;
1961 dfx_port_read_long(bp, PFI_K_REG_STATUS, &status);
1962 if (!(status & PFI_STATUS_M_PDQ_INT))
1974 /* Clear PDQ interrupt status bit and reenable interrupts */
1985 u8 status;
1987 status = inb(base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
1988 if (!(status & PI_CONFIG_STAT_0_M_PEND))
1994 status &= ~PI_CONFIG_STAT_0_M_INT_ENB;
1995 outb(status, base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2001 status = inb(base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2002 status |= PI_CONFIG_STAT_0_M_INT_ENB;
2003 outb(status, base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2008 u32 status;
2010 dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_STATUS, &status);
2011 if (!(status & (PI_PSTATUS_M_RCV_DATA_PENDING |
2622 int status; /* adapter status */
2627 status = dfx_hw_adap_state_rd(bp);
2628 if ((status == PI_STATE_K_RESET) ||
2629 (status == PI_STATE_K_HALTED) ||
2630 (status == PI_STATE_K_DMA_UNAVAIL) ||
2631 (status == PI_STATE_K_UPGRADE))
3813 int status;
3815 status = dfx_register(dev);
3816 if (!status)
3818 return status;
3831 int status;
3833 status = pci_register_driver(&dfx_pci_driver);
3834 if (status)
3837 status = eisa_driver_register(&dfx_eisa_driver);
3838 if (status)
3841 status = tc_register_driver(&dfx_tc_driver);
3842 if (status)
3852 return status;