Date: Wed, 4 Dec 2024 12:04:16 GMT From: Christos Margiolis <christos@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 63979e82e54d - stable/14 - sound: Fix mis-sorted CHN_F_BITS line Message-ID: <202412041204.4B4C4GGX049904@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by christos: URL: https://cgit.FreeBSD.org/src/commit/?id=63979e82e54d195055573ae9078c768f74689a1e commit 63979e82e54d195055573ae9078c768f74689a1e Author: Christos Margiolis <christos@FreeBSD.org> AuthorDate: 2024-12-02 16:26:50 +0000 Commit: Christos Margiolis <christos@FreeBSD.org> CommitDate: 2024-12-04 12:03:36 +0000 sound: Fix mis-sorted CHN_F_BITS line Fixes: 5317480967bf ("sound: Remove CHN_F_SLEEPING") Reported by: jhb Sponsored by: The FreeBSD Foundation MFC after: 2 days Reviewed by: jhb, emaste Differential Revision: https://reviews.freebsd.org/D47781 (cherry picked from commit 29ba0cc4d919243436f1bf73a22a554fa5073a44) --- sys/dev/sound/pcm/channel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pcm/channel.h b/sys/dev/sound/pcm/channel.h index cef8aa4e86e5..47089aca0745 100644 --- a/sys/dev/sound/pcm/channel.h +++ b/sys/dev/sound/pcm/channel.h @@ -381,8 +381,8 @@ enum { "\002ABORTING" \ "\003RUNNING" \ "\004TRIGGERED" \ - /* \006 */ \ "\005NOTRIGGER" \ + /* \006 */ \ "\007NBIO" \ "\010MMAP" \ "\011BUSY" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412041204.4B4C4GGX049904>