summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2000-01-16 19:02:29 +0000
committermjacob <mjacob@FreeBSD.org>2000-01-16 19:02:29 +0000
commitcf6baaf862eb77e7290bdff9ee50aaefb2b106de (patch)
tree350dc29d3d3b7a19daa94b2779cf767a6ee938a3
parent4d73c6b7b174b29dd45dd6a15f266cacf8588327 (diff)
downloadFreeBSD-src-cf6baaf862eb77e7290bdff9ee50aaefb2b106de.zip
FreeBSD-src-cf6baaf862eb77e7290bdff9ee50aaefb2b106de.tar.gz
Fix breakage from last commit- macro was broken. I appreciate the
committer's fixing things for alpha, but I sure wish they could have compiled on one!
-rw-r--r--sys/alpha/include/ipl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/include/ipl.h b/sys/alpha/include/ipl.h
index 0e39066..cea0e09 100644
--- a/sys/alpha/include/ipl.h
+++ b/sys/alpha/include/ipl.h
@@ -73,9 +73,9 @@ static __inline int name(void) \
} \
\
static __inline int \
-is_##name(void) \
+is_##name(void) \
{ \
- return (getcpl() >= ALPHA_PSL_IP_L##pri); \
+ return (getcpl() >= ALPHA_PSL_IPL_##pri); \
}
SPLUP(splsoftcam, SOFT)
OpenPOWER on IntegriCloud