aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-03-07 07:24:36 +0100
committerTakashi Iwai <tiwai@suse.de>2020-03-07 07:24:36 +0100
commit5a56996b0f13b9a5db0ca60528d13c661d37377a (patch)
tree274167e81431bf77f5beef2a7ca298d8b1e0b063 /include
parentALSA: sgio2audio: Remove usage of dropped hw_params/hw_free functions (diff)
parentASoC: wm8741: Fix typo in Kconfig prompt (diff)
downloadwireguard-linux-5a56996b0f13b9a5db0ca60528d13c661d37377a.tar.xz
wireguard-linux-5a56996b0f13b9a5db0ca60528d13c661d37377a.zip
Merge tag 'asoc-fix-v5.6-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v5.6 More fixes that have arrived since the merge window, spread out all over. There's a few things like the operation callback addition for rt1015 and the meson reset addition which add small new bits of functionality to fix non-working systems, they're all very small and for parts of newly added functionality.
Diffstat (limited to 'include')
-rw-r--r--include/sound/soc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index f0e4f36f83bf..8a2266676b2d 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -1157,7 +1157,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]);)
void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd);