diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-03-07 07:24:36 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-03-07 07:24:36 +0100 |
commit | 5a56996b0f13b9a5db0ca60528d13c661d37377a (patch) | |
tree | 274167e81431bf77f5beef2a7ca298d8b1e0b063 /include | |
parent | 95dbf14b236f3147f716cd159bd29461916c610e (diff) | |
parent | 3fb83cbee1de58fcd5d22f1db89460bb7c08b6e8 (diff) |
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.h | 2 |
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); |