diff options
author | Mark Brown <broonie@kernel.org> | 2015-10-26 03:15:55 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-26 03:15:55 +0100 |
commit | 6439e5c2a784f6b00dd136df54d6f0859bc77af3 (patch) | |
tree | f9dee1f0bdcf07eb7ce86dfbf9f1a558bae62404 /sound/soc/soc-core.c | |
parent | Merge tag 'asoc-v4.3-rc2' into asoc-next (diff) | |
parent | ASoC: compress: add config item for soc-compress to make it compiled only whe... (diff) | |
download | linux-6439e5c2a784f6b00dd136df54d6f0859bc77af3.tar.xz linux-6439e5c2a784f6b00dd136df54d6f0859bc77af3.zip |
Merge remote-tracking branch 'asoc/topic/core' into asoc-next
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 3b471f9c98c6..24b096066a07 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -1370,9 +1370,9 @@ static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order) soc_dpcm_debugfs_add(rtd); #endif - if (cpu_dai->driver->compress_dai) { + if (cpu_dai->driver->compress_new) { /*create compress_device"*/ - ret = soc_new_compress(rtd, num); + ret = cpu_dai->driver->compress_new(rtd, num); if (ret < 0) { dev_err(card->dev, "ASoC: can't create compress %s\n", dai_link->stream_name); |