From: David Gibson Date: Wed, 13 Jan 2016 01:15:22 +0000 (+1100) Subject: target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub X-Git-Tag: qemu-xen-4.8.0-rc1~519^2~11 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=512fe19330f60ebcb79a3f440411d3a1c7f6e11a;p=qemu-xen.git target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub This stub function is in the !KVM ifdef in target-ppc/kvm_ppc.h. However no such function exists on the KVM side, or is ever used. I think this originally referenced a function which read host page size information from /proc, for we we now use the KVM GET_SMMU_INFO extension instead. In any case, it has no function now, so remove it. Signed-off-by: David Gibson Reviewed-by: Thomas Huth Reviewed-by: Laurent Vivier Reviewed-by: Alexander Graf --- diff --git a/target-ppc/kvm_ppc.h b/target-ppc/kvm_ppc.h index 5e1333d995..62406ce4e1 100644 --- a/target-ppc/kvm_ppc.h +++ b/target-ppc/kvm_ppc.h @@ -98,11 +98,6 @@ static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_l return -1; } -static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells) -{ - return -1; -} - static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level) { return -1;