Lines Matching refs:status
55 * interrupt status flags for the device. These bits are toggle on
145 * fifo_icap_get_status - Get the contents of the status register.
148 * The status register contains the ICAP status and the done bit.
162 u32 status = in_be32(drvdata->base_address + XHI_SR_OFFSET);
163 dev_dbg(drvdata->dev, "Getting status = %x\n", status);
164 return status;
173 u32 status = in_be32(drvdata->base_address + XHI_SR_OFFSET);
174 return (status & XHI_SR_DONE_MASK) ? 0 : 1;