From 0572e41b65895ee7588594a42d0e8cb75e1f0973 Mon Sep 17 00:00:00 2001 From: hackerman-kl Date: Sat, 25 Apr 2026 12:10:06 +0200 Subject: [PATCH] milan-avb: acmp-milan-v12: 'no timer' not at warning, debug --- src/modules/module-avb/acmp-cmds-resps/acmp-milan-v12.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/module-avb/acmp-cmds-resps/acmp-milan-v12.c b/src/modules/module-avb/acmp-cmds-resps/acmp-milan-v12.c index 01d07d9c1..b2a7419fe 100644 --- a/src/modules/module-avb/acmp-cmds-resps/acmp-milan-v12.c +++ b/src/modules/module-avb/acmp-cmds-resps/acmp-milan-v12.c @@ -183,7 +183,9 @@ static struct acmp_lt_timers* acmp_timer_lt_find_milan_v12(struct acmp_milan_v12 } } - pw_log_warn("Stream %p, no timer %s", stream, fsm_acmp_evt_milan_v12_str[event]); + /* Milan Section 5.5.3: callers use find_remove with "remove if present" + * semantics, so a missing timer is not an error — keep at debug. */ + pw_log_debug("Stream %p, no timer %s", stream, fsm_acmp_evt_milan_v12_str[event]); return NULL; }