2006-02-27 22:48:07

by Chris Wright

[permalink] [raw]
Subject: [patch 02/39] [PATCH] s390: add #ifdef __KERNEL__ to asm-s390/setup.h

-stable review patch. If anyone has any objections, please let us know.
------------------

Based on a patch from Maximilian Attems <[email protected]> . Nothing in
asm-s390/setup.h is of interest for user space.

Signed-off-by: Heiko Carstens <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Signed-off-by: Chris Wright <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---

include/asm-s390/setup.h | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)

--- linux-2.6.15.4.orig/include/asm-s390/setup.h
+++ linux-2.6.15.4/include/asm-s390/setup.h
@@ -8,6 +8,8 @@
#ifndef _ASM_S390_SETUP_H
#define _ASM_S390_SETUP_H

+#ifdef __KERNEL__
+
#include <asm/types.h>

#define PARMAREA 0x10400
@@ -114,7 +116,7 @@ extern u16 ipl_devno;
IPL_PARMBLOCK_ORIGIN)
#define IPL_PARMBLOCK_SIZE (IPL_PARMBLOCK_START->hdr.length)

-#else
+#else /* __ASSEMBLY__ */

#ifndef __s390x__
#define IPL_DEVICE 0x10404
@@ -127,6 +129,6 @@ extern u16 ipl_devno;
#endif /* __s390x__ */
#define COMMAND_LINE 0x10480

-#endif
-
-#endif
+#endif /* __ASSEMBLY__ */
+#endif /* __KERNEL__ */
+#endif /* _ASM_S390_SETUP_H */

--