diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-01-27 15:10:40 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-03-26 23:09:18 +0100 |
commit | 91119686f33928e2ced93eaedf4191cedbd0e827 (patch) | |
tree | 81765aeb037fb6a21c360e5039486be48b69d1d1 /arch | |
parent | 49016748ec45408ad89d10308ac903a2202ff305 (diff) | |
download | linux-91119686f33928e2ced93eaedf4191cedbd0e827.tar.bz2 |
MIPS: kernel: proc: Add EVA to the list of CPU features
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index ca1d48e5d53f..f0df7fde37c5 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c @@ -96,6 +96,7 @@ static int show_cpuinfo(struct seq_file *m, void *v) if (cpu_has_mmips) seq_printf(m, "%s", " micromips"); if (cpu_has_vz) seq_printf(m, "%s", " vz"); if (cpu_has_msa) seq_printf(m, "%s", " msa"); + if (cpu_has_eva) seq_printf(m, "%s", " eva"); seq_printf(m, "\n"); if (cpu_has_mmips) { |