diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-11-27 18:06:42 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-11-27 18:06:42 +0300 |
commit | b8e0be79d0004eded7f93981489781a389790959 (patch) | |
tree | c07a90d8b8b3a12d6e71d5d4418259a66a2c0377 /include | |
parent | 1078bef0cd9291355a20369b21cd823026ab8eaa (diff) | |
parent | ffdcc3638c58d55a6fa68b6e5dfd4fb4109652eb (diff) | |
download | linux-b8e0be79d0004eded7f93981489781a389790959.tar.xz |
Merge tag 'asoc-v4.20-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v4.20
Lots of fixes here, the majority of which are driver specific but
there's a couple of core things and one notable driver specific one:
- A core fix for a DAPM regression introduced during the component
refactoring, we'd lost the code that forced a reevaluation of the
DAPM graph after probe (which we suppress during init to save lots
of recalcuation) and have now restored it.
- A core fix for error handling using the newly added
for_each_rtd_codec_dai_rollback() macro.
- A fix for the names of widgets in the newly introduced pcm3060
driver, merged as a fix so we don't have a release with legacy names.
Diffstat (limited to 'include')
-rw-r--r-- | include/sound/soc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index f1dab1f4b194..70c10a8f3e90 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -1192,7 +1192,7 @@ struct snd_soc_pcm_runtime { ((i) < rtd->num_codecs) && ((dai) = rtd->codec_dais[i]); \ (i)++) #define for_each_rtd_codec_dai_rollback(rtd, i, dai) \ - for (; ((i--) >= 0) && ((dai) = rtd->codec_dais[i]);) + for (; ((--i) >= 0) && ((dai) = rtd->codec_dais[i]);) /* mixer control */ |