diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2010-01-13 14:44:35 -0500 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-01-13 14:44:45 -0500 |
commit | c6a5f8cea2e5454fce3859ca5ed381c2535184cf (patch) | |
tree | c2b7dce50da44d79e3669bda8152d6d0f9357dc8 /arch/s390 | |
parent | 02beaccc901b7a28ac1de79f3ed122f5fda220b1 (diff) |
[S390] smp: remove volatile type quilifier from __cpu_logical_map
Remove pointless qualifier.
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/include/asm/sigp.h | 2 | ||||
-rw-r--r-- | arch/s390/kernel/setup.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/include/asm/sigp.h b/arch/s390/include/asm/sigp.h index ec403d4304f8..0cc620a6a2cc 100644 --- a/arch/s390/include/asm/sigp.h +++ b/arch/s390/include/asm/sigp.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <asm/atomic.h> | 19 | #include <asm/atomic.h> |
20 | 20 | ||
21 | /* get real cpu address from logical cpu number */ | 21 | /* get real cpu address from logical cpu number */ |
22 | extern volatile int __cpu_logical_map[]; | 22 | extern int __cpu_logical_map[]; |
23 | 23 | ||
24 | typedef enum | 24 | typedef enum |
25 | { | 25 | { |
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index 2d6a265b0145..3fe1680c3899 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c | |||
@@ -87,7 +87,7 @@ unsigned long elf_hwcap = 0; | |||
87 | char elf_platform[ELF_PLATFORM_SIZE]; | 87 | char elf_platform[ELF_PLATFORM_SIZE]; |
88 | 88 | ||
89 | struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; | 89 | struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; |
90 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ | 90 | int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ |
91 | 91 | ||
92 | int __initdata memory_end_set; | 92 | int __initdata memory_end_set; |
93 | unsigned long __initdata memory_end; | 93 | unsigned long __initdata memory_end; |