diff options
author | 1999-07-23 13:18:04 +0000 | |
---|---|---|
committer | 1999-07-23 13:18:04 +0000 | |
commit | 7d375a01d7cf809d563c2095ee2dedfb74ab3fd0 (patch) | |
tree | 56b027c850544b3d12e6c1363b4e910f44c5707f /sys/dev/isa/mpu401.c | |
parent | - Use strtol() instead of atoi() so head(1) will complain when given bad (diff) | |
download | wireguard-openbsd-7d375a01d7cf809d563c2095ee2dedfb74ab3fd0.tar.xz wireguard-openbsd-7d375a01d7cf809d563c2095ee2dedfb74ab3fd0.zip |
From NetBSD; let i386 run audio at a high IPL
Diffstat (limited to 'sys/dev/isa/mpu401.c')
-rw-r--r-- | sys/dev/isa/mpu401.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/mpu401.c b/sys/dev/isa/mpu401.c index ad370234bc6..225a7a113a5 100644 --- a/sys/dev/isa/mpu401.c +++ b/sys/dev/isa/mpu401.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpu401.c,v 1.2 1999/07/20 16:36:05 deraadt Exp $ */ +/* $OpenBSD: mpu401.c,v 1.3 1999/07/23 13:18:04 niklas Exp $ */ /* $NetBSD: mpu401.c,v 1.3 1998/11/25 22:17:06 augustss Exp $ */ /* @@ -58,7 +58,9 @@ #include <dev/isa/mpu401var.h> +#ifndef splaudio #define splaudio() splbio() /* XXX found in audio_if.h normally */ +#endif #ifdef AUDIO_DEBUG #define DPRINTF(x) if (mpu401debug) printf x |