diff options
author | Blue Swirl | 2012-10-28 12:04:50 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2012-11-01 19:49:45 +0100 |
commit | 6575c289f8c9820a7a0d2de2b0c3c58b13d9abc8 (patch) | |
tree | 656f0ee1f804f3d447e428bf0d7ac35a30f66ae6 /target-ppc/mmu_helper.c | |
parent | ppc: add missing static (diff) | |
download | qemu-6575c289f8c9820a7a0d2de2b0c3c58b13d9abc8.tar.gz qemu-6575c289f8c9820a7a0d2de2b0c3c58b13d9abc8.tar.xz qemu-6575c289f8c9820a7a0d2de2b0c3c58b13d9abc8.zip |
target-ppc: make some functions static
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Acked-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'target-ppc/mmu_helper.c')
-rw-r--r-- | target-ppc/mmu_helper.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/target-ppc/mmu_helper.c b/target-ppc/mmu_helper.c index 811f47f309..318ce92adb 100644 --- a/target-ppc/mmu_helper.c +++ b/target-ppc/mmu_helper.c @@ -1276,7 +1276,8 @@ static int mmubooke_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx, return ret; } -void booke206_flush_tlb(CPUPPCState *env, int flags, const int check_iprot) +static void booke206_flush_tlb(CPUPPCState *env, int flags, + const int check_iprot) { int tlb_size; int i, j; @@ -1297,8 +1298,8 @@ void booke206_flush_tlb(CPUPPCState *env, int flags, const int check_iprot) tlb_flush(env, 1); } -hwaddr booke206_tlb_to_page_size(CPUPPCState *env, - ppcmas_tlb_t *tlb) +static hwaddr booke206_tlb_to_page_size(CPUPPCState *env, + ppcmas_tlb_t *tlb) { int tlbm_size; @@ -1706,8 +1707,8 @@ static inline int check_physical(CPUPPCState *env, mmu_ctx_t *ctx, return ret; } -int get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx, target_ulong eaddr, - int rw, int access_type) +static int get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx, + target_ulong eaddr, int rw, int access_type) { int ret; |