1234567891011121314151617181920 |
- From 419b337ac3e60126f9de0bc98892e54a8ffe3b6e Mon Sep 17 00:00:00 2001
- From: Samuel Holland <[email protected]>
- Date: Sun, 13 Jun 2021 23:50:57 -0500
- Subject: [PATCH 047/117] ASoC: sun4i-i2s: Also set capture DMA width
- Signed-off-by: Samuel Holland <[email protected]>
- ---
- sound/soc/sunxi/sun4i-i2s.c | 1 +
- 1 file changed, 1 insertion(+)
- --- a/sound/soc/sunxi/sun4i-i2s.c
- +++ b/sound/soc/sunxi/sun4i-i2s.c
- @@ -633,6 +633,7 @@ static int sun4i_i2s_hw_params(struct sn
- params_physical_width(params));
- return -EINVAL;
- }
- + i2s->capture_dma_data.addr_width = width;
- i2s->playback_dma_data.addr_width = width;
-
- sr = i2s->variant->get_sr(word_size);
|