diff options
author | Emil Condrea <emilcondrea@gmail.com> | 2016-10-25 08:50:16 +0300 |
---|---|---|
committer | Stefano Stabellini <sstabellini@kernel.org> | 2016-10-28 17:54:21 -0700 |
commit | ba18fa2a8c9e1746f8229322be8e8893d9a3b192 (patch) | |
tree | f0c276fac3395c60fbce6a5dea9131447cbc1052 /hw/usb | |
parent | 65807f4b6c6c922644be5cffae2ceb9694217bb1 (diff) | |
download | qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.tar.gz qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.tar.bz2 qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.zip |
xen: Rename xen_be_send_notify
Prepare xen_be_send_notify to be shared with frontends:
* xen_be_send_notify -> xen_pv_send_notify
Signed-off-by: Emil Condrea <emilcondrea@gmail.com>
Signed-off-by: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Quan Xu <xuquan8@huawei.com>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/xen-usb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/usb/xen-usb.c b/hw/usb/xen-usb.c index 4ae9b6af90..1b3c2fb3c7 100644 --- a/hw/usb/xen-usb.c +++ b/hw/usb/xen-usb.c @@ -314,7 +314,7 @@ static void usbback_do_response(struct usbback_req *usbback_req, int32_t status, RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&usbif->urb_ring, notify); if (notify) { - xen_be_send_notify(xendev); + xen_pv_send_notify(xendev); } } @@ -590,7 +590,7 @@ static void usbback_hotplug_notify(struct usbback_info *usbif) /* Check for full ring. */ if ((RING_SIZE(ring) - ring->rsp_prod_pvt - ring->req_cons) == 0) { - xen_be_send_notify(&usbif->xendev); + xen_pv_send_notify(&usbif->xendev); return; } @@ -609,7 +609,7 @@ static void usbback_hotplug_notify(struct usbback_info *usbif) RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(ring, notify); if (notify) { - xen_be_send_notify(&usbif->xendev); + xen_pv_send_notify(&usbif->xendev); } TR_BUS(&usbif->xendev, "hotplug port %d speed %d\n", usb_hp->port, |