Lines Matching refs:status
264 static int status_to_errno(u32 status)
266 switch (status & MAIL_OUT_STATUS_MASK) {
393 * dma_port_flash_update_auth_status() to get status of this command.
408 * dma_port_flash_update_auth_status() - Reads status of update auth command
410 * @status: Status code of the operation
412 * The function checks if there is status available from the last update
413 * auth command. Returns %0 if there is no status and no further
414 * action is required. If there is status, %1 is returned instead and
415 * @status holds the failure code.
417 * Negative return means there was an error reading status from the
420 int dma_port_flash_update_auth_status(struct tb_dma_port *dma, u32 *status)
431 /* Check if the status relates to flash update auth */
434 if (status)
435 *status = out & MAIL_OUT_STATUS_MASK;