diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-20 21:17:52 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-20 21:17:52 +0000 |
commit | 2e1d20befafc7682c185916398c3ef0281cbd3db (patch) | |
tree | b97753abf66364a7d0480b29581729fb108ed957 | |
parent | f474e05111e1735365e4fa0bcb2d86df37f27abe (diff) |
Do not protect this file with _KERNEL; other header files which include it do it
in a _KERNEL-only section, and we want to eventually be able to use it from
the bootblocks.
-rw-r--r-- | sys/arch/m88k/include/psl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/m88k/include/psl.h b/sys/arch/m88k/include/psl.h index 8a577d24611..a1f74383693 100644 --- a/sys/arch/m88k/include/psl.h +++ b/sys/arch/m88k/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.4 2005/09/25 22:41:12 miod Exp $ */ +/* $OpenBSD: psl.h,v 1.5 2007/12/20 21:17:51 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * All rights reserved. @@ -46,8 +46,6 @@ #ifndef __M88K_PSL_H__ #define __M88K_PSL_H__ -#ifdef _KERNEL - /* * 881x0 control registers */ @@ -91,6 +89,4 @@ #define XIP_E 0x00000001 /* exception */ #define XIP_ADDR 0xfffffffc /* address mask */ -#endif /* _KERNEL */ - #endif /* __M88K_PSL_H__ */ |