--- Begin Message ---
- To: "broonie@xxxxxxxxxx" <broonie@xxxxxxxxxx>
- Subject: [PATCH v2 0/1] ASoC: hdmi-codec: only startup/shutdown on supported streams
- From: Emil Abildgaard Svendsen <EMAS@xxxxxxxxxxxxxxx>
- Date: Thu, 9 Mar 2023 06:54:41 +0000
- Cc: Alvin Šipraga <ALSI@xxxxxxxxxxxxxxx>, Emil Abildgaard Svendsen <EMAS@xxxxxxxxxxxxxxx>, "alsa-devel@xxxxxxxxxxxxxxxx" <alsa-devel@xxxxxxxxxxxxxxxx>, "lgirdwood@xxxxxxxxx" <lgirdwood@xxxxxxxxx>, "linux-patches@xxxxxxxxxxxxxxx" <linux-patches@xxxxxxxxxxxxxxx>, "tiwai@xxxxxxxx" <tiwai@xxxxxxxx>
- In-reply-to: <167829274851.108660.12928497382811712287.b4-ty@kernel.org>
- References: <167829274851.108660.12928497382811712287.b4-ty@kernel.org>
I have accidentally inverted "tx".
Truth table for when to ignore.
+--------------+----+--------+-----+ +--------+-----+
| has_playback | has_capture | TX | | Before | Now |
+--------------+-------------+-----+ +--------+-----+
| 0 | 0 | 0 | | 1 | 1 |
+--------------+-------------+-----+ +--------+-----+
| 0 | 0 | 1 | | 1 | 1 |
+--------------+-------------+-----+ +--------+-----+
| 0 | 1 | 0 | | 1 | 0 |
+--------------+-------------+-----+ +--------+-----+
| 0 | 1 | 1 | | 0 | 1 |
+--------------+-------------+-----+ +--------+-----+
| 1 | 0 | 0 | | 0 | 1 |
+--------------+-------------+-----+ +--------+-----+
| 1 | 0 | 1 | | 1 | 0 |
+--------------+-------------+-----+ +--------+-----+
| 1 | 1 | 0 | | 0 | 0 |
+--------------+-------------+-----+ +--------+-----+
| 1 | 1 | 1 | | 0 | 0 |
+--------------+-------------+-----+ +--------+-----+
Sorry for the inconvenience.
Emil Svendsen (1):
ASoC: hdmi-codec: only startup/shutdown on supported streams
sound/soc/codecs/hdmi-codec.c | 11 +++++++++++
1 file changed, 11 insertions(+)
--
2.34.1
--- End Message ---