diff options
author | Thomas Huth <thuth@redhat.com> | 2015-05-22 09:25:02 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2015-08-22 11:16:16 +0200 |
commit | 5358a96341a7fba23cbf0eaf01ce1ab4d738fc90 (patch) | |
tree | 49fc8843426bbf80fee0c6c98d17c204a3df63fb /arch/powerpc/kvm/book3s_paired_singles.c | |
parent | KVM: PPC: Remove PPC970 from KVM_BOOK3S_64_HV text in Kconfig (diff) | |
download | linux-5358a96341a7fba23cbf0eaf01ce1ab4d738fc90.tar.xz linux-5358a96341a7fba23cbf0eaf01ce1ab4d738fc90.zip |
KVM: PPC: Fix warnings from sparse
When compiling the KVM code for POWER with "make C=1", sparse
complains about functions missing proper prototypes and a 64-bit
constant missing the ULL prefix. Let's fix this by making the
functions static or by including the proper header with the
prototypes, and by appending a ULL prefix to the constant
PPC_MPPE_ADDRESS_MASK.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/book3s_paired_singles.c')
-rw-r--r-- | arch/powerpc/kvm/book3s_paired_singles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/book3s_paired_singles.c b/arch/powerpc/kvm/book3s_paired_singles.c index bd6ab1672ae6..a759d9adb0b6 100644 --- a/arch/powerpc/kvm/book3s_paired_singles.c +++ b/arch/powerpc/kvm/book3s_paired_singles.c @@ -352,7 +352,7 @@ static inline u32 inst_get_field(u32 inst, int msb, int lsb) return kvmppc_get_field(inst, msb + 32, lsb + 32); } -bool kvmppc_inst_is_paired_single(struct kvm_vcpu *vcpu, u32 inst) +static bool kvmppc_inst_is_paired_single(struct kvm_vcpu *vcpu, u32 inst) { if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)) return false; |