Fixes: qemu/qemu-kvm.c:373: warning: no previous prototype for ‘qemu_kvm_system_reset’
Signed-off-by: Mark McLoughlin <[email protected]> --- qemu/qemu-kvm.c | 2 +- qemu/qemu-kvm.h | 2 -- 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c index 7b81d0f..fe05f3e 100644 --- a/qemu/qemu-kvm.c +++ b/qemu/qemu-kvm.c @@ -363,7 +363,7 @@ static void setup_kernel_sigmask(CPUState *env) kvm_set_signal_mask(kvm_context, env->cpu_index, &set); } -void qemu_kvm_system_reset(void) +static void qemu_kvm_system_reset(void) { CPUState *penv = first_cpu; diff --git a/qemu/qemu-kvm.h b/qemu/qemu-kvm.h index 3253a73..042dd93 100644 --- a/qemu/qemu-kvm.h +++ b/qemu/qemu-kvm.h @@ -119,8 +119,6 @@ int qemu_kvm_register_coalesced_mmio(target_phys_addr_t addr, int qemu_kvm_unregister_coalesced_mmio(target_phys_addr_t addr, unsigned int size); -void qemu_kvm_system_reset_request(void); - int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size); int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size); -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
