diff options
author | Roman Kagan | 2018-09-21 10:18:36 +0200 |
---|---|---|
committer | Paolo Bonzini | 2018-10-19 13:44:13 +0200 |
commit | 2486cb8eba919980091c754256cd014342738a6a (patch) | |
tree | 92772e59b8ca0c528d33101d34b69671c52fb41f /hw/misc/hyperv_testdev.c | |
parent | hyperv: make HvSintRoute reference-counted (diff) | |
download | qemu-2486cb8eba919980091c754256cd014342738a6a.tar.gz qemu-2486cb8eba919980091c754256cd014342738a6a.tar.xz qemu-2486cb8eba919980091c754256cd014342738a6a.zip |
hyperv: rename kvm_hv_sint_route_set_sint
There's nothing kvm-specific in it so follow the suite and replace
"kvm_hv" prefix with "hyperv".
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
Message-Id: <20180921081836.29230-9-rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/misc/hyperv_testdev.c')
-rw-r--r-- | hw/misc/hyperv_testdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/hyperv_testdev.c b/hw/misc/hyperv_testdev.c index dbf4e7e4ab..33bbd286bc 100644 --- a/hw/misc/hyperv_testdev.c +++ b/hw/misc/hyperv_testdev.c @@ -90,7 +90,7 @@ static void sint_route_set_sint(HypervTestDev *dev, sint_route = sint_route_find(dev, vp_index, sint); - kvm_hv_sint_route_set_sint(sint_route->sint_route); + hyperv_sint_route_set_sint(sint_route->sint_route); } static uint64_t hv_test_dev_read(void *opaque, hwaddr addr, unsigned size) |