|
@@ -61,6 +61,9 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
|
|
"esan3", "zarch", "stfle", "msa", "ldisp", "eimm", "dfp",
|
|
|
"edat", "etf3eh", "highgprs", "te", "vx"
|
|
|
};
|
|
|
+ static const char * const int_hwcap_str[] = {
|
|
|
+ "sie"
|
|
|
+ };
|
|
|
unsigned long n = (unsigned long) v - 1;
|
|
|
int i;
|
|
|
|
|
@@ -75,6 +78,9 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
|
|
for (i = 0; i < ARRAY_SIZE(hwcap_str); i++)
|
|
|
if (hwcap_str[i] && (elf_hwcap & (1UL << i)))
|
|
|
seq_printf(m, "%s ", hwcap_str[i]);
|
|
|
+ for (i = 0; i < ARRAY_SIZE(int_hwcap_str); i++)
|
|
|
+ if (int_hwcap_str[i] && (int_hwcap & (1UL << i)))
|
|
|
+ seq_printf(m, "%s ", int_hwcap_str[i]);
|
|
|
seq_puts(m, "\n");
|
|
|
show_cacheinfo(m);
|
|
|
}
|