Lines Matching refs:status

417  *   Retrieves the address ranges used to access control and status
957 int status; /* return code from adapter port control call */
977 status = dfx_hw_port_ctrl_req(bp,
982 if ((status != DFX_K_SUCCESS) || (host_data == 2))
1641 PI_UINT32 port_status; /* PDQ port status register value */
1642 PI_UINT32 halt_id; /* PDQ port status halt ID */
1644 /* Read the latest port status */
1738 * or if the port status indicates that the adapter is halted. The driver
1747 PI_UINT32 state; /* current adap state (from port status) */
1970 u32 status;
1972 dfx_port_read_long(bp, PFI_K_REG_STATUS, &status);
1973 if (!(status & PFI_STATUS_M_PDQ_INT))
1985 /* Clear PDQ interrupt status bit and reenable interrupts */
1996 u8 status;
1998 status = inb(base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
1999 if (!(status & PI_CONFIG_STAT_0_M_PEND))
2005 status &= ~PI_CONFIG_STAT_0_M_INT_ENB;
2006 outb(status, base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2012 status = inb(base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2013 status |= PI_CONFIG_STAT_0_M_INT_ENB;
2014 outb(status, base_addr + PI_ESIC_K_IO_CONFIG_STAT_0);
2019 u32 status;
2021 dfx_port_read_long(bp, PI_PDQ_K_REG_PORT_STATUS, &status);
2022 if (!(status & (PI_PSTATUS_M_RCV_DATA_PENDING |
2633 int status; /* adapter status */
2638 status = dfx_hw_adap_state_rd(bp);
2639 if ((status == PI_STATE_K_RESET) ||
2640 (status == PI_STATE_K_HALTED) ||
2641 (status == PI_STATE_K_DMA_UNAVAIL) ||
2642 (status == PI_STATE_K_UPGRADE))
3826 int status;
3828 status = dfx_register(dev);
3829 if (!status)
3831 return status;
3844 int status;
3846 status = pci_register_driver(&dfx_pci_driver);
3847 if (status)
3850 status = eisa_driver_register(&dfx_eisa_driver);
3851 if (status)
3854 status = tc_register_driver(&dfx_tc_driver);
3855 if (status)
3865 return status;