diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-05-16 06:38:14 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-05-16 06:38:14 +0000 |
commit | 658c98c8f7bab420daeee4f570ea7ffd0fa0cb26 (patch) | |
tree | d7ba7d31a60b95f35c71340d8aa2f5f1a0275aa8 | |
parent | da62f7b2f76553baad775458cdff748622164daf (diff) |
Add missing IPL_AUDIO macro, needed by dev/audio.c
ok miod and kettenis
-rw-r--r-- | sys/arch/sparc/include/psl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/psl.h b/sys/arch/sparc/include/psl.h index b8afe55177f..4d9fba8a1df 100644 --- a/sys/arch/sparc/include/psl.h +++ b/sys/arch/sparc/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.25 2009/04/10 20:53:54 miod Exp $ */ +/* $OpenBSD: psl.h,v 1.26 2013/05/16 06:38:13 ratchov Exp $ */ /* $NetBSD: psl.h,v 1.12 1997/03/10 21:49:11 pk Exp $ */ /* @@ -95,6 +95,7 @@ * with how MI audio code handles this. Stay tuned for a change in the future */ #define IPL_AUHARD 13 /* hard audio interrupts */ +#define IPL_AUDIO IPL_AUHARD #define IPL_STATCLOCK 14 /* statclock() */ #define IPL_SCHED IPL_STATCLOCK #define IPL_HIGH 15 /* splhigh() */ |