KVM: PPC: e500mc: Enable e6500 cores

Extend processor compatibility names to e6500 cores.

Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
Mihai Caraman 2013-04-11 00:03:13 +00:00 committed by Alexander Graf
parent 5b21501045
commit ea17a971c2

View File

@ -172,6 +172,8 @@ int kvmppc_core_check_processor_compat(void)
r = 0; r = 0;
else if (strcmp(cur_cpu_spec->cpu_name, "e5500") == 0) else if (strcmp(cur_cpu_spec->cpu_name, "e5500") == 0)
r = 0; r = 0;
else if (strcmp(cur_cpu_spec->cpu_name, "e6500") == 0)
r = 0;
else else
r = -ENOTSUPP; r = -ENOTSUPP;