diff options
author | Suraj Jitindar Singh <sjitindarsingh@gmail.com> | 2017-02-24 12:05:12 +1100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2017-03-01 11:23:39 +1100 |
commit | 8d63351f9f99412fd2b99e2f5a8be2bc87d5670e (patch) | |
tree | 9a11dcaca7eed77b062e47a14709921049496520 /target/ppc/mmu-hash64.h | |
parent | e57ca75ce3b2bd33102573a8c0555d62e1bcfceb (diff) | |
download | qemu-8d63351f9f99412fd2b99e2f5a8be2bc87d5670e.zip qemu-8d63351f9f99412fd2b99e2f5a8be2bc87d5670e.tar.gz qemu-8d63351f9f99412fd2b99e2f5a8be2bc87d5670e.tar.bz2 |
target/ppc: Remove the function ppc_hash64_set_sdr1()
The function ppc_hash64_set_sdr1 basically checked the htabsize and set an
error if it was too big, otherwise it just stored the value in SPR_SDR1.
Given that the only function which calls ppc_hash64_set_sdr1() is
ppc_store_sdr1(), why not handle the checking in ppc_store_sdr1() to avoid
the extra function call. Note that ppc_store_sdr1() already stores the
value in SPR_SDR1 anyway, so we were doing it twice.
Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
[dwg: Remove unnecessary error temporary]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/mmu-hash64.h')
-rw-r--r-- | target/ppc/mmu-hash64.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/ppc/mmu-hash64.h b/target/ppc/mmu-hash64.h index c8d3458..9c74823 100644 --- a/target/ppc/mmu-hash64.h +++ b/target/ppc/mmu-hash64.h @@ -109,9 +109,6 @@ static inline hwaddr ppc_hash64_hpt_mask(PowerPCCPU *cpu) return (1ULL << ((cpu->env.spr[SPR_SDR1] & SDR_64_HTABSIZE) + 18 - 7)) - 1; } -void ppc_hash64_set_sdr1(PowerPCCPU *cpu, target_ulong value, - Error **errp); - struct ppc_hash_pte64 { uint64_t pte0, pte1; }; |