Merge "arm64: Add back print of processor name and rev"

This commit is contained in:
Linux Build Service Account 2016-09-30 18:23:33 -07:00 committed by Gerrit - the friendly Code Review server
commit 9919a21fd9

View file

@ -19,6 +19,7 @@
#include <asm/cpu.h>
#include <asm/cputype.h>
#include <asm/cpufeature.h>
#include <asm/elf.h>
#include <linux/bitops.h>
#include <linux/bug.h>
@ -107,6 +108,8 @@ static int c_show(struct seq_file *m, void *v)
{
int i, j;
seq_printf(m, "Processor\t: AArch64 Processor rev %d (%s)\n",
read_cpuid_id() & 15, ELF_PLATFORM);
for_each_present_cpu(i) {
struct cpuinfo_arm64 *cpuinfo = &per_cpu(cpu_data, i);
u32 midr = cpuinfo->reg_midr;