diff options
| author | Christos Margiolis <christos@FreeBSD.org> | 2026-01-02 16:57:00 +0000 |
|---|---|---|
| committer | Christos Margiolis <christos@FreeBSD.org> | 2026-01-02 16:58:06 +0000 |
| commit | 3094c5e388df296f1b84579f70a5583ddc3bc26a (patch) | |
| tree | 87127fe7b85c0a49802ba5be32dd5072ddb21c11 | |
| parent | e3b57ceffef0158a72a7a5aedfa9df88b3a8a88b (diff) | |
sound: Make mpu_if definitions static
No functional change intended.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
| -rw-r--r-- | sys/dev/sound/midi/mpu401.c | 6 |
1 files 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; |
