diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-31 21:39:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-31 21:39:57 +0000 |
commit | e427229895bf7380905f9c1916ce7111a59e5359 (patch) | |
tree | f9f3c9b1f9d4ecf5ab5406e958129c7a1aa776e3 /sys/arch/amd64 | |
parent | 7bbc70ff8f5d035b748582648b0f6f2f2b3ab9aa (diff) |
there is no spllpt(), since lpt's are just tty devices (call tty functions,
and thus should be using spltty()
from Matthew Dempsky
ok oga guenther
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/include/intr.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/amd64/include/intr.h b/sys/arch/amd64/include/intr.h index 5361c4d7af0..81e1bcdc753 100644 --- a/sys/arch/amd64/include/intr.h +++ b/sys/arch/amd64/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.18 2009/08/22 02:54:50 mk Exp $ */ +/* $OpenBSD: intr.h,v 1.19 2010/05/31 21:39:56 deraadt Exp $ */ /* $NetBSD: intr.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */ /*- @@ -135,10 +135,6 @@ void softintr(int); #define splstatclock() splclock() #define splipi() splraise(IPL_IPI) -#define spllpt() spltty() - -#define spllpt() spltty() - /* * Software interrupt masks */ |