diff options
| author | Takashi Iwai <tiwai@suse.de> | 2026-06-09 10:49:04 +0300 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2026-06-09 13:50:06 +0300 |
| commit | 123fd13f35ccaf7d2b98f5a8cc6c8a3de378568d (patch) | |
| tree | acaa0a868cd3c9d6b2d8b229acb9c73b0dac799c | |
| parent | 422e42b7c2b882ba1d16d4afc8891bcea7c4de93 (diff) | |
| download | linux-123fd13f35ccaf7d2b98f5a8cc6c8a3de378568d.tar.xz | |
ALSA: aloop: Drop superfluous break
At converting the spinlock to guard(), a break statement was put in
the scoped_guard block in loopback_jiffies_timer_function(), but it's
obviously superfluous (although it's harmless). Better to drop it for
avoiding confusion.
Fixes: 1ef2cb6b29c2 ("ALSA: aloop: Use guard() for spin locks")
Link: https://patch.msgid.link/20260609074907.726593-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/drivers/aloop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/drivers/aloop.c b/sound/drivers/aloop.c index a37a1695f51c..3f8488716a08 100644 --- a/sound/drivers/aloop.c +++ b/sound/drivers/aloop.c @@ -728,7 +728,6 @@ static void loopback_jiffies_timer_function(struct timer_list *t) if (dpcm->period_update_pending) { dpcm->period_update_pending = 0; period_elapsed = true; - break; } } } |
