diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2019-02-14 10:37:41 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-02-14 14:06:01 +0100 |
commit | 0f928c19b646f6af39ccf7481a546e5da616bb78 (patch) | |
tree | 1319aafa86df696ba63f6c2171d6546e1d7452b9 /sound/soc/samsung/s3c2412-i2s.c | |
parent | ASoC: samsung: odroid: Add support for secondary CPU DAI (diff) | |
download | linux-0f928c19b646f6af39ccf7481a546e5da616bb78.tar.xz linux-0f928c19b646f6af39ccf7481a546e5da616bb78.zip |
ASoC: samsung: Specify DMA channel names through custom DMA config
This is a part of conversion of Samsung platforms to use the custom DMA
config for specifying DMA channel names, in addition to passing custom
DMA device for the secondary CPU DAI's "PCM" component for some variants
of the I2S controller.
We also don't set the SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME any more
as setting it wouldn't allow to specify DMA channels through the custom
DMA config.
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Acked-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/samsung/s3c2412-i2s.c')
-rw-r--r-- | sound/soc/samsung/s3c2412-i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/s3c2412-i2s.c b/sound/soc/samsung/s3c2412-i2s.c index 67dfa27ae321..c08638b0e458 100644 --- a/sound/soc/samsung/s3c2412-i2s.c +++ b/sound/soc/samsung/s3c2412-i2s.c @@ -177,7 +177,7 @@ static int s3c2412_iis_dev_probe(struct platform_device *pdev) ret = samsung_asoc_dma_platform_register(&pdev->dev, pdata->dma_filter, - NULL, NULL, NULL); + "tx", "rx", NULL); if (ret) { pr_err("failed to register the DMA: %d\n", ret); return ret; |