diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2015-03-04 11:49:32 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-03-19 19:46:01 +0000 |
commit | a44ef51799109dccba751240e84ca2da937a88ed (patch) | |
tree | b8a50205aa97bcaee641b2eff56d678b23b44cba /arch/arm64/kernel/setup.c | |
parent | b784a5d97d0af4835dd0125a3e0e5d0fd48128d6 (diff) | |
download | lwn-a44ef51799109dccba751240e84ca2da937a88ed.tar.gz lwn-a44ef51799109dccba751240e84ca2da937a88ed.zip |
arm64: remove processor_id
The global processor_id is assigned the MIDR_EL1 value of the boot
CPU in the early init code, but is never referenced afterwards.
As the relevance of the MIDR_EL1 value of the boot CPU is debatable
anyway, especially under big.LITTLE, let's remove it before anyone
starts using it.
Tested-by: Mark Rutland <mark.rutland@arm.com>
Reviewed-by: Mark Rutland <mark.rutland@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/kernel/setup.c')
-rw-r--r-- | arch/arm64/kernel/setup.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index 3852405d70b5..1783b38cf4c0 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c @@ -63,9 +63,6 @@ #include <asm/efi.h> #include <asm/virt.h> -unsigned int processor_id; -EXPORT_SYMBOL(processor_id); - unsigned long elf_hwcap __read_mostly; EXPORT_SYMBOL_GPL(elf_hwcap); |