summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-06-24 22:14:48 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-06-24 22:14:48 +0000
commitdf6e6bc44f68827af6d90a64d0117bc6b452ad60 (patch)
treea77d79e2564a809a060a0e8b88df018ca91a1e9b /sys/arch/mac68k
parente67edc18c19786204912bc2e293e70ce61f10f89 (diff)
Provide dummy d_kqfilter() routine so that this compiles, until this driver
is rewritten to use the MI audio framework.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r--sys/arch/mac68k/dev/asc.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/asc.c b/sys/arch/mac68k/dev/asc.c
index 003699da211..95bdb93b8a8 100644
--- a/sys/arch/mac68k/dev/asc.c
+++ b/sys/arch/mac68k/dev/asc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asc.c,v 1.14 2002/03/14 01:26:35 millert Exp $ */
+/* $OpenBSD: asc.c,v 1.15 2002/06/24 22:14:47 miod Exp $ */
/* $NetBSD: asc.c,v 1.20 1997/02/24 05:47:33 scottr Exp $ */
/*
@@ -357,3 +357,14 @@ asc_stop_bell(arg)
if (--sc->sc_ringing == 0) /* disable ASC */
bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x801, 0);
}
+
+int asckqfilter(dev_t, struct knote *);
+
+int
+asckqfilter(dev, kn)
+ dev_t dev;
+ struct knote *kn;
+{
+
+ return (1);
+}