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/audio_if.h | |
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/audio_if.h')
-rw-r--r-- | sys/dev/audio_if.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/audio_if.h b/sys/dev/audio_if.h index 534c63f7bb5..7d82a7cc252 100644 --- a/sys/dev/audio_if.h +++ b/sys/dev/audio_if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: audio_if.h,v 1.8 1999/01/02 00:02:39 niklas Exp $ */ +/* $OpenBSD: audio_if.h,v 1.9 1999/07/23 13:18:04 niklas Exp $ */ /* $NetBSD: audio_if.h,v 1.24 1998/01/10 14:07:25 tv Exp $ */ /* @@ -153,10 +153,10 @@ int audioprint __P((void *, const char *)); #define ISDEVAUDIOCTL(x) (AUDIODEV((x)) == AUDIOCTL_DEVICE) #define ISDEVMIXER(x) (AUDIODEV((x)) == MIXER_DEVICE) -/*#ifndef __i386__*/ +#ifndef __i386__ #define splaudio splbio /* XXX */ #define IPL_AUDIO IPL_BIO /* XXX */ -/*#endif*/ +#endif #endif /* _SYS_DEV_AUDIO_IF_H_ */ |