aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2008-07-03 06:02:41 -0400
committerPaul Mundt <lethal@linux-sh.org>2008-07-28 05:10:27 -0400
commit82706b8f7bd1365e50478d3d0f6090f22e4571c7 (patch)
treeeeef3a7942ad16f94cd582a87a4267bbbdf69a9b /include
parent45dabf1427a0a876f733b07239ade1bdb0e06010 (diff)
sh: Prevent leaking of CONFIG_SUPERH32 to userspace in asm/unistd.h.
CONFIG_SUPERH32 is currently trickling into userspace unistd.h. Attached patch uses __SH5__ define in userspace. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r--include/asm-sh/unistd.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/asm-sh/unistd.h b/include/asm-sh/unistd.h
index 4b21f369c28c..65be656ead7d 100644
--- a/include/asm-sh/unistd.h
+++ b/include/asm-sh/unistd.h
@@ -1,5 +1,13 @@
1#ifdef CONFIG_SUPERH32 1#ifdef __KERNEL__
2# include "unistd_32.h" 2# ifdef CONFIG_SUPERH32
3# include "unistd_32.h"
4# else
5# include "unistd_64.h"
6# endif
3#else 7#else
4# include "unistd_64.h" 8# ifdef __SH5__
9# include "unistd_64.h"
10# else
11# include "unistd_32.h"
12# endif
5#endif 13#endif