KVM: PPC: Pass enum to kvmppc_get_last_inst
authorAlexander Graf <agraf@suse.de>
Wed, 10 Sep 2014 12:37:29 +0000 (14:37 +0200)
committerAlexander Graf <agraf@suse.de>
Mon, 22 Sep 2014 08:11:36 +0000 (10:11 +0200)
commit8d0eff6385640a9e6eed0b0c09113794b2bb74e9
tree6598f70fc84d121175c1229d09248d578ea34a55
parent033aaa14af0251285226a7dafc11c24a13959bca
KVM: PPC: Pass enum to kvmppc_get_last_inst

The kvmppc_get_last_inst function recently received a facelift that allowed
us to pass an enum of the type of instruction we want to read into it rather
than an unreadable boolean.

Unfortunately, not all callers ended up passing the enum. This wasn't really
an issue as "true" and "false" happen to match the two enum values we have,
but it's still hard to read.

Update all callers of kvmppc_get_last_inst() to follow the new calling
convention.

Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/booke.c
arch/powerpc/kvm/emulate.c
arch/powerpc/kvm/emulate_loadstore.c
arch/powerpc/kvm/powerpc.c