summaryrefslogtreecommitdiff
path: root/arch/powerpc/kvm/e500_tlb.c
diff options
context:
space:
mode:
authorLiu Yu <yu.liu@freescale.com>2009-01-14 10:47:37 -0600
committerAvi Kivity <avi@redhat.com>2009-03-24 11:03:05 +0200
commitfb2838d446f6ee7e13e4149e08ec138753c5c450 (patch)
treeae7e5d59cbcfe2b7f9651e78e4066c8d6ecb8b67 /arch/powerpc/kvm/e500_tlb.c
parent87c656b4147cd08c6efba95d8d70c12cba181255 (diff)
KVM: ppc: Fix e500 warnings and some spelling problems
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm/e500_tlb.c')
-rw-r--r--arch/powerpc/kvm/e500_tlb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kvm/e500_tlb.c b/arch/powerpc/kvm/e500_tlb.c
index 6a50340f575e..e3daf57b5f5e 100644
--- a/arch/powerpc/kvm/e500_tlb.c
+++ b/arch/powerpc/kvm/e500_tlb.c
@@ -260,7 +260,7 @@ static inline void kvmppc_e500_deliver_tlb_miss(struct kvm_vcpu *vcpu,
unsigned int victim, pidsel, tsized;
int tlbsel;
- /* since we only have tow TLBs, only lower bit is used. */
+ /* since we only have two TLBs, only lower bit is used. */
tlbsel = (vcpu_e500->mas4 >> 28) & 0x1;
victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0;
pidsel = (vcpu_e500->mas4 >> 16) & 0xf;
@@ -402,7 +402,7 @@ int kvmppc_e500_emul_tlbivax(struct kvm_vcpu *vcpu, int ra, int rb)
ia = (ea >> 2) & 0x1;
- /* since we only have tow TLBs, only lower bit is used. */
+ /* since we only have two TLBs, only lower bit is used. */
tlbsel = (ea >> 3) & 0x1;
if (ia) {
@@ -471,7 +471,7 @@ int kvmppc_e500_emul_tlbsx(struct kvm_vcpu *vcpu, int rb)
} else {
int victim;
- /* since we only have tow TLBs, only lower bit is used. */
+ /* since we only have two TLBs, only lower bit is used. */
tlbsel = vcpu_e500->mas4 >> 28 & 0x1;
victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0;