Lines Matching refs:status
47 /* Constants for checking transfer status */
73 * buffer_icap_get_status - Get the contents of the status register.
76 * The status register contains the ICAP status and the done bit.
111 * The queries the low order bit of the status register, which
117 u32 status = in_be32(base_address + XHI_STATUS_REG_OFFSET);
118 return (status & 1) == XHI_NOT_FINISHED;
252 * Writing to the status register resets the ICAP logic in an internal
270 int status;
289 status = buffer_icap_device_write(
293 if (status != 0) {
296 return status;
306 status = buffer_icap_device_write(drvdata, XHI_BUFFER_START,
308 if (status != 0) {
312 return status;
327 int status;
342 status = buffer_icap_device_read(
346 if (status != 0) {
349 return status;