git: 841cc68a3e54 - stable/15 - sound: Improve dsp_cdevsw style
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 26 Oct 2025 14:22:26 UTC
The branch stable/15 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=841cc68a3e54ac09e5addbb79a974b0902be6b72
commit 841cc68a3e54ac09e5addbb79a974b0902be6b72
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2025-10-22 12:31:16 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2025-10-26 14:22:11 +0000
sound: Improve dsp_cdevsw style
Sponsored by: The FreeBSD Foundation
MFC after: 4 days
(cherry picked from commit 4bab868a122b9c853865c8d89886d9354d0f242b)
---
sys/dev/sound/pcm/dsp.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c
index fe5576baf017..27d5b740b90b 100644
--- a/sys/dev/sound/pcm/dsp.c
+++ b/sys/dev/sound/pcm/dsp.c
@@ -83,15 +83,15 @@ static d_mmap_t dsp_mmap;
static d_mmap_single_t dsp_mmap_single;
struct cdevsw dsp_cdevsw = {
- .d_version = D_VERSION,
- .d_open = dsp_open,
- .d_read = dsp_read,
- .d_write = dsp_write,
- .d_ioctl = dsp_ioctl,
- .d_poll = dsp_poll,
- .d_mmap = dsp_mmap,
- .d_mmap_single = dsp_mmap_single,
- .d_name = "dsp",
+ .d_version = D_VERSION,
+ .d_open = dsp_open,
+ .d_read = dsp_read,
+ .d_write = dsp_write,
+ .d_ioctl = dsp_ioctl,
+ .d_poll = dsp_poll,
+ .d_mmap = dsp_mmap,
+ .d_mmap_single = dsp_mmap_single,
+ .d_name = "dsp",
};
static eventhandler_tag dsp_ehtag = NULL;