aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>2014-12-07 18:20:46 +0100
committerAlexander Graf <agraf@suse.de>2014-12-17 13:12:25 +0100
commit24aaaf22ea3c660dd673ebde9922b43047bb3946 (patch)
tree1d8e9a20d16480dc51c29e0cfbf89d2e7cf34c36 /arch/powerpc
parentKVM: PPC: Book3S HV: Check wait conditions before sleeping in kvmppc_vcore_blocked (diff)
downloadlinux-dev-24aaaf22ea3c660dd673ebde9922b43047bb3946.tar.xz
linux-dev-24aaaf22ea3c660dd673ebde9922b43047bb3946.zip
arch: powerpc: kvm: book3s_32_mmu.c: Remove unused function
Remove the function sr_nx() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kvm/book3s_32_mmu.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/kvm/book3s_32_mmu.c b/arch/powerpc/kvm/book3s_32_mmu.c
index cd0b0730e29e..a2eb6d354a57 100644
--- a/arch/powerpc/kvm/book3s_32_mmu.c
+++ b/arch/powerpc/kvm/book3s_32_mmu.c
@@ -78,11 +78,6 @@ static inline bool sr_kp(u32 sr_raw)
return (sr_raw & 0x20000000) ? true: false;
}
-static inline bool sr_nx(u32 sr_raw)
-{
- return (sr_raw & 0x10000000) ? true: false;
-}
-
static int kvmppc_mmu_book3s_32_xlate_bat(struct kvm_vcpu *vcpu, gva_t eaddr,
struct kvmppc_pte *pte, bool data,
bool iswrite);