Lines Matching refs:ret
79 int ret = 0;
112 ret = -EINVAL;
139 ret = -EINVAL;
142 return ret;
209 int ret = 0;
214 ret = snd_pcm_hw_constraint_step(runtime, 0,
216 if (ret)
219 ret = snd_pcm_hw_constraint_step(runtime, 0,
221 if (ret)
224 ret = snd_pcm_hw_constraint_integer(runtime,
226 if (ret < 0)
229 ret = -ENOMEM;
237 return ret;
389 int ret;
395 ret = dma_coerce_mask_and_coherent(pcm->card->dev, DMA_BIT_MASK(32));
396 if (ret)
400 ret = bcm63xx_pcm_preallocate_dma_buffer(pcm,
402 if (ret)
410 ret = bcm63xx_pcm_preallocate_dma_buffer(pcm,
412 if (ret)
419 return ret;
458 int ret;
466 ret = devm_request_irq(&pdev->dev, i2s_priv->r_irq->start, i2s_dma_isr,
468 if (ret) {
470 "i2s_init: failed to request interrupt.ret=%d\n", ret);
471 return ret;