Lines Matching refs:status
627 drv_data->controller->cur_msg->status = err;
729 u32 status;
742 * interrupt that is meant for another device, check if status bits
746 status = pxa2xx_spi_read(drv_data, SSSR);
747 if (status == ~0)
760 if (!(status & mask))
1032 /* Clear status and start DMA engine */
1041 /* Clear status */
1340 int status;
1351 status = device_property_read_u32(dev, "intel,spi-pxa2xx-type", &value);
1352 if (status)
1353 return ERR_PTR(status);
1392 status = acpi_dev_uid_to_integer(ACPI_COMPANION(dev), &uid);
1393 if (status)
1443 int status;
1471 status = -ENOMEM;
1522 status = request_irq(ssp->irq, ssp_int, IRQF_SHARED, dev_name(dev),
1524 if (status < 0) {
1531 status = pxa2xx_spi_dma_setup(drv_data);
1532 if (status) {
1544 status = clk_prepare_enable(ssp->clk);
1545 if (status)
1627 status = PTR_ERR(drv_data->gpiod_ready);
1639 status = spi_register_controller(controller);
1640 if (status) {
1645 return status;
1659 return status;
1693 int status;
1695 status = spi_controller_suspend(drv_data->controller);
1696 if (status)
1697 return status;
1711 int status;
1715 status = clk_prepare_enable(ssp->clk);
1716 if (status)
1717 return status;