Skip to content

Commit

Permalink
arm64: KVM: Remove some extra semicolon in kvm_target_cpu
Browse files Browse the repository at this point in the history
There are some extra semicolon in kvm_target_cpu, remove it.

Signed-off-by: zhong jiang <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
  • Loading branch information
xiongzhongjiang authored and Marc Zyngier committed Oct 3, 2018
1 parent 9d47bb0 commit f072534
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm64/kvm/guest.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,15 +338,15 @@ int __attribute_const__ kvm_target_cpu(void)
return KVM_ARM_TARGET_CORTEX_A53;
case ARM_CPU_PART_CORTEX_A57:
return KVM_ARM_TARGET_CORTEX_A57;
};
}
break;
case ARM_CPU_IMP_APM:
switch (part_number) {
case APM_CPU_PART_POTENZA:
return KVM_ARM_TARGET_XGENE_POTENZA;
};
}
break;
};
}

/* Return a default generic target */
return KVM_ARM_TARGET_GENERIC_V8;
Expand Down

0 comments on commit f072534

Please sign in to comment.