diff options
author | Takashi Iwai <tiwai@suse.de> | 2023-06-21 14:02:40 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-06-21 14:06:18 +0300 |
commit | eacd9c7f1d3ab8381a99b98b36652b5cf6ae8387 (patch) | |
tree | ac719a99215aaa865a305845de2721731a342fba /sound/core | |
parent | a79807683781d3f215e9d958494e52ed70f4ad27 (diff) | |
download | linux-eacd9c7f1d3ab8381a99b98b36652b5cf6ae8387.tar.xz |
ALSA: ump: Add no_process_stream flag
This is another preliminary patch for USB MIDI 2.0 gadget driver.
Add a new flag, no_process_stream, to snd_ump for suppressing the UMP
Stream message handling in UMP core.
Link: https://lore.kernel.org/r/20230621110241.4751-3-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/ump.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/core/ump.c b/sound/core/ump.c index 4150b9c0b35b..5e73c9cf5919 100644 --- a/sound/core/ump.c +++ b/sound/core/ump.c @@ -854,6 +854,10 @@ static void ump_handle_stream_msg(struct snd_ump_endpoint *ump, unsigned int status; int ret; + /* UMP stream message suppressed (for gadget UMP)? */ + if (ump->no_process_stream) + return; + BUILD_BUG_ON(sizeof(*msg) != 16); ump_dbg(ump, "Stream msg: %08x %08x %08x %08x\n", buf[0], buf[1], buf[2], buf[3]); |