summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-10-01 06:09:25 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-10-01 06:09:25 +0000
commit8debc5ea8d61c2b35477be58c25d2bc2ef9062c9 (patch)
tree6707f9eb68dfd3b4d4b0406f562a829cb0124fb7
parentad9395e33131d516598e4f9317dd21305287340a (diff)
sparc64 doesn't need splaudio()/IPL_AUDIO provided here, either
-rw-r--r--sys/dev/audio_if.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/audio_if.h b/sys/dev/audio_if.h
index 6c5bb994862..dca4a427646 100644
--- a/sys/dev/audio_if.h
+++ b/sys/dev/audio_if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: audio_if.h,v 1.11 2000/07/19 09:04:37 csapuntz Exp $ */
+/* $OpenBSD: audio_if.h,v 1.12 2001/10/01 06:09:24 jason Exp $ */
/* $NetBSD: audio_if.h,v 1.24 1998/01/10 14:07:25 tv Exp $ */
/*
@@ -159,7 +159,7 @@ int audioprint __P((void *, const char *));
#define ISDEVAUDIOCTL(x) (AUDIODEV((x)) == AUDIOCTL_DEVICE)
#define ISDEVMIXER(x) (AUDIODEV((x)) == MIXER_DEVICE)
-#ifndef __i386__
+#if !defined(__i386__) && !defined(__sparc64__)
#define splaudio splbio /* XXX */
#define IPL_AUDIO IPL_BIO /* XXX */
#endif