git: efca6398b7eb - stable/15 - sound: Make mpu_if definitions static
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 09 Jan 2026 23:28:01 UTC
The branch stable/15 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=efca6398b7eb27ac20383a9ef104337ac9a40c4a
commit efca6398b7eb27ac20383a9ef104337ac9a40c4a
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-01-02 16:57:00 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-01-09 23:27:24 +0000
sound: Make mpu_if definitions static
No functional change intended.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
(cherry picked from commit 3094c5e388df296f1b84579f70a5583ddc3bc26a)
---
sys/dev/sound/midi/mpu401.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/dev/sound/midi/mpu401.c b/sys/dev/sound/midi/mpu401.c
index 107a53119cdb..500e15c79497 100644
--- a/sys/dev/sound/midi/mpu401.c
+++ b/sys/dev/sound/midi/mpu401.c
@@ -203,7 +203,7 @@ mpu401_minit(struct snd_midi *sm, void *arg)
return 1;
}
-int
+static int
mpu401_muninit(struct snd_midi *sm, void *arg)
{
struct mpu401 *m = arg;
@@ -211,13 +211,13 @@ mpu401_muninit(struct snd_midi *sm, void *arg)
return MPUFOI_UNINIT(m, m->cookie);
}
-int
+static int
mpu401_minqsize(struct snd_midi *sm, void *arg)
{
return 128;
}
-int
+static int
mpu401_moutqsize(struct snd_midi *sm, void *arg)
{
return 128;