diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-10-25 03:36:13 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-10-25 17:02:43 +0300 |
commit | b99305d20122174c9fd0469bae036f0c401999b5 (patch) | |
tree | a98193b81b6566ee8bd070c869ec35fb51aebdb7 /sound/soc/sh/rcar/src.c | |
parent | be78cea151afe1fc9d880bf2a3db0bd2deb8c62a (diff) | |
download | linux-b99305d20122174c9fd0469bae036f0c401999b5.tar.xz |
ASoC: rsnd: remove non DT support for DMA
Current Renesas Sound driver is based on DeviceTree, and no one is
using this driver from non DT. Non-DT support is no longer needed.
Let's remove it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/rcar/src.c')
-rw-r--r-- | sound/soc/sh/rcar/src.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/src.c b/sound/soc/sh/rcar/src.c index 969a5169de25..e13d6d439b32 100644 --- a/sound/soc/sh/rcar/src.c +++ b/sound/soc/sh/rcar/src.c @@ -475,7 +475,7 @@ static int rsnd_src_probe_(struct rsnd_mod *mod, return ret; } - ret = rsnd_dma_attach(io, mod, &src->dma, 0); + ret = rsnd_dma_attach(io, mod, &src->dma); return ret; } |