diff options
author | 2002-06-24 22:14:47 +0000 | |
---|---|---|
committer | 2002-06-24 22:14:47 +0000 | |
commit | 83c88ec02136ee023729df5933b02396c77d4935 (patch) | |
tree | 1ddc12970ac3b372eee5e00da938683bb1ff1ffd | |
parent | opcode aliases, mostly taken from recent binutils. (diff) | |
download | wireguard-openbsd-83c88ec02136ee023729df5933b02396c77d4935.tar.xz wireguard-openbsd-83c88ec02136ee023729df5933b02396c77d4935.zip |
Provide dummy d_kqfilter() routine so that this compiles, until this driver
is rewritten to use the MI audio framework.
-rw-r--r-- | sys/arch/mac68k/dev/asc.c | 13 |
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); +} |