summaryrefslogtreecommitdiff
path: root/sys/dev/midi_if.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
commite63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch)
treec2aa960c67a99a878c8902943399029fa598683f /sys/dev/midi_if.h
parent71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff)
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/dev/midi_if.h')
-rw-r--r--sys/dev/midi_if.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/midi_if.h b/sys/dev/midi_if.h
index 26d2bafeb12..f527ec587bf 100644
--- a/sys/dev/midi_if.h
+++ b/sys/dev/midi_if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: midi_if.h,v 1.3 2002/03/14 01:26:52 millert Exp $ */
+/* $OpenBSD: midi_if.h,v 1.4 2002/03/14 03:16:03 millert Exp $ */
/* $NetBSD: midi_if.h,v 1.3 1998/11/25 22:17:07 augustss Exp $ */
/*
@@ -50,10 +50,10 @@ struct midi_info {
struct midi_softc;
struct midi_hw_if {
- int (*open)__P((void *, int, /* open hardware */
- void (*)(void *, int), /* input callback */
- void (*)(void *), /* output callback */
- void *));
+ int (*open)(void *, int, /* open hardware */
+ void (*)(void *, int), /* input callback */
+ void (*)(void *), /* output callback */
+ void *);
void (*close)(void *); /* close hardware */
int (*output)(void *, int); /* output a byte */
void (*getinfo)(void *, struct midi_info *);