diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-22 15:05:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-22 15:05:06 +0000 |
commit | 1aa84235852ab028e4428386c2c32b3e345b4659 (patch) | |
tree | f2f4db35fcaf4fcae566b3e142f162851803ca2c /sys/arch/hp300/include | |
parent | 9bb0cb1a2624f76f0ce09134fc42dc6b08cc6a3d (diff) |
IPL_HIGH should be 7, not 6. This is purely cosmetic as that value is
not actually used but it makes things consistent wrt spls and potential
future splasserts. miod@ OK.
Diffstat (limited to 'sys/arch/hp300/include')
-rw-r--r-- | sys/arch/hp300/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/intr.h b/sys/arch/hp300/include/intr.h index 866efd622be..39876f354b1 100644 --- a/sys/arch/hp300/include/intr.h +++ b/sys/arch/hp300/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.10 2003/01/05 01:51:27 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.11 2003/12/22 15:05:05 millert Exp $ */ /* $NetBSD: intr.h,v 1.2 1997/07/24 05:43:08 scottr Exp $ */ /*- @@ -131,7 +131,7 @@ extern unsigned short hp300_impipl; #define IPL_TTYNOBUF 4 /* XXX */ #define IPL_CLOCK 6 #define IPL_STATCLOCK 6 -#define IPL_HIGH 6 +#define IPL_HIGH 7 /* These spl calls are _not_ to be used by machine-independent code. */ #define splhil() _splraise(PSL_S|PSL_IPL1) |