diff options
author | Christoph Egger <siccegge@cs.fau.de> | 2010-05-17 04:00:08 -0400 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-05-17 04:00:16 -0400 |
commit | a78f1c4c1dc4b9dedd17c46dd414f26c7bf1e503 (patch) | |
tree | 8a539bf313cba6319c23c62384180fe5348b9c71 /arch/s390 | |
parent | 58ea91c05346f7c6336e6248b743aa9a8e1c19a9 (diff) |
[S390] vdso: remove redundant check for CONFIG_64BIT
This is a check for CONFIG_64BIT inside a block that is only active when
CONFIG_64BIT is set. So the check is actually useless and potentially
irritating.
Signed-off-by: Christoph Egger <siccegge@cs.fau.de>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/vdso.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/s390/kernel/vdso.c b/arch/s390/kernel/vdso.c index 6bc9c197aa91..6b83870507d5 100644 --- a/arch/s390/kernel/vdso.c +++ b/arch/s390/kernel/vdso.c | |||
@@ -102,11 +102,7 @@ static void vdso_init_per_cpu_data(int cpu, struct vdso_per_cpu_data *vpcd) | |||
102 | /* | 102 | /* |
103 | * Allocate/free per cpu vdso data. | 103 | * Allocate/free per cpu vdso data. |
104 | */ | 104 | */ |
105 | #ifdef CONFIG_64BIT | ||
106 | #define SEGMENT_ORDER 2 | 105 | #define SEGMENT_ORDER 2 |
107 | #else | ||
108 | #define SEGMENT_ORDER 1 | ||
109 | #endif | ||
110 | 106 | ||
111 | int vdso_alloc_per_cpu(int cpu, struct _lowcore *lowcore) | 107 | int vdso_alloc_per_cpu(int cpu, struct _lowcore *lowcore) |
112 | { | 108 | { |