We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae72f6 commit 9c1fe96Copy full SHA for 9c1fe96
sound/core/timer.c
@@ -520,9 +520,10 @@ static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
520
return;
521
if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
522
523
+ event += 10; /* convert to SNDRV_TIMER_EVENT_MXXX */
524
list_for_each_entry(ts, &ti->slave_active_head, active_list)
525
if (ts->ccallback)
- ts->ccallback(ts, event + 100, &tstamp, resolution);
526
+ ts->ccallback(ts, event, &tstamp, resolution);
527
}
528
529
/* start/continue a master timer */
0 commit comments