summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2005-09-07 06:57:10 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2005-09-07 06:57:10 +0000
commitb92a2feaf8d81dc1e5032ba9d2d6dc3626d6e8c7 (patch)
tree9d4465677bdcdce9e99288cf2d00bcc29263661a /sys
parente26760b3c607491083d6b68a5b51b718e8861133 (diff)
Part of Alexandre Ratchov's last umidi diff that should have been committed.
pointed out by reyk@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/umidivar.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/umidivar.h b/sys/dev/usb/umidivar.h
index 46c38d2cc25..77889e386fe 100644
--- a/sys/dev/usb/umidivar.h
+++ b/sys/dev/usb/umidivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: umidivar.h,v 1.8 2004/06/27 19:44:48 deraadt Exp $ */
+/* $OpenBSD: umidivar.h,v 1.9 2005/09/07 06:57:09 jsg Exp $ */
/* $NetBSD: umidivar.h,v 1.5 2002/09/12 21:00:42 augustss Exp $ */
/*
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -40,7 +40,9 @@
struct umidi_packet {
unsigned status;
unsigned index;
- unsigned char buffer[UMIDI_PACKET_SIZE];
+ unsigned char buffer_rt[UMIDI_PACKET_SIZE]; /* real time packet */
+ unsigned char buffer_com[UMIDI_PACKET_SIZE]; /* common/voice packet */
+ unsigned char *buffer;
};
/*