From 436eefc6254e1ded58a196baa4a7d317dc03b749 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 2 Aug 2021 13:52:14 +1000 Subject: [PATCH] alsa-endpoint: add a FIXME for some missing code We call setup_alsa_ucm_endpoint() before the setup_alsa_fallback_endpoint(), but this function always returns -ENOTSUP. Add a FIXME comment to make this more obvious. --- src/examples/media-session/alsa-endpoint.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/examples/media-session/alsa-endpoint.c b/src/examples/media-session/alsa-endpoint.c index 015646fc3..2ea095ef9 100644 --- a/src/examples/media-session/alsa-endpoint.c +++ b/src/examples/media-session/alsa-endpoint.c @@ -610,6 +610,8 @@ static int setup_alsa_ucm_endpoint(struct device *device) pw_log_debug("verb: %s", verb_list[i]); } + /* FIXME: implement this */ + snd_use_case_free_list(verb_list, num_verbs); res = -ENOTSUP;