Commit c6a5f8ce authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky

[S390] smp: remove volatile type quilifier from __cpu_logical_map

Remove pointless qualifier.
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 02beaccc
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include <asm/atomic.h> #include <asm/atomic.h>
/* get real cpu address from logical cpu number */ /* get real cpu address from logical cpu number */
extern volatile int __cpu_logical_map[]; extern int __cpu_logical_map[];
typedef enum typedef enum
{ {
......
...@@ -87,7 +87,7 @@ unsigned long elf_hwcap = 0; ...@@ -87,7 +87,7 @@ unsigned long elf_hwcap = 0;
char elf_platform[ELF_PLATFORM_SIZE]; char elf_platform[ELF_PLATFORM_SIZE];
struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS];
volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */
int __initdata memory_end_set; int __initdata memory_end_set;
unsigned long __initdata memory_end; unsigned long __initdata memory_end;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment