aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2018-05-02 06:12:18 +0900
committerMark Brown <broonie@kernel.org>2018-05-02 06:12:18 +0900
commit783ec5e99ab9d8839957b15b5836e8bb795d74b6 (patch)
tree3b25befe45a3cbf67692fc388da49929f9bfaa85 /include/sound
parentASoC: amd: fix spelling mistake: "failer" -> "failure" (diff)
parentASoC: dai playback and capture active may be greater than 1 (diff)
downloadlinux-dev-783ec5e99ab9d8839957b15b5836e8bb795d74b6.tar.xz
linux-dev-783ec5e99ab9d8839957b15b5836e8bb795d74b6.zip
Merge remote-tracking branch 'asoc/for-4.17' into asoc-4.18 to resolve a
conflict between a fix and new development in mtk
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/soc-dai.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/soc-dai.h b/include/sound/soc-dai.h
index 8ad11669e4d8..35ebb0be5114 100644
--- a/include/sound/soc-dai.h
+++ b/include/sound/soc-dai.h
@@ -294,8 +294,8 @@ struct snd_soc_dai {
struct snd_soc_dai_driver *driver;
/* DAI runtime info */
- unsigned int capture_active:1; /* stream is in use */
- unsigned int playback_active:1; /* stream is in use */
+ unsigned int capture_active; /* stream usage count */
+ unsigned int playback_active; /* stream usage count */
unsigned int probed:1;
unsigned int active;