aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Margiolis <christos@FreeBSD.org>2026-01-02 16:57:03 +0000
committerChristos Margiolis <christos@FreeBSD.org>2026-01-02 16:58:06 +0000
commit3f8a85a085c710f50b8bcd4efe915268882129d2 (patch)
treeb510f82d22b72d1327b9ecf077f6f310f5fcb3fc
parent3094c5e388df296f1b84579f70a5583ddc3bc26a (diff)
sound: Get rid of unused MIDIQ macros
No functional change intended. Sponsored by: The FreeBSD Foundation MFC after: 1 week
-rw-r--r--sys/dev/sound/midi/midiq.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/sound/midi/midiq.h b/sys/dev/sound/midi/midiq.h
index 27958ff4c23e..80825974283e 100644
--- a/sys/dev/sound/midi/midiq.h
+++ b/sys/dev/sound/midi/midiq.h
@@ -83,7 +83,5 @@ struct name { \
#define MIDIQ_CLEAR(head) ((head).h = (head).t = 0)
#define MIDIQ_BUF(head) ((head).b)
#define MIDIQ_DEQ(head, buf, size) MIDIQ_DEQ_I(head, buf, size, 1, 1)
-#define MIDIQ_PEEK(head, buf, size) MIDIQ_DEQ_I(head, buf, size, 1, 0)
-#define MIDIQ_POP(head, size) MIDIQ_DEQ_I(head, &head, size, 0, 1)
#endif