Message ID | 20240510104908.76908-2-philmd@linaro.org |
---|---|
State | New |
Headers | show |
Series | hw/xen: Simplify legacy backends handling | expand |
On 10/05/2024 11:49, Philippe Mathieu-Daudé wrote: > 'xen_blkdev_ops' was removed in commit 19f87870ba ("xen: remove > the legacy 'xen_disk' backend"), 'xen_netdev_ops' in commit > 25967ff69f ("hw/xen: update Xen PV NIC to XenDevice model") and > 'xen_console_ops' in commit 9b77374690 ("hw/xen: update Xen > console to XenDevice model"). Remove them. > > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> > --- > include/hw/xen/xen-legacy-backend.h | 3 --- > 1 file changed, 3 deletions(-) > Reviewed-by: Paul Durrant <paul@xen.org>
diff --git a/include/hw/xen/xen-legacy-backend.h b/include/hw/xen/xen-legacy-backend.h index 2cca174778..eb22633caa 100644 --- a/include/hw/xen/xen-legacy-backend.h +++ b/include/hw/xen/xen-legacy-backend.h @@ -67,14 +67,11 @@ static inline void xen_be_unmap_grant_ref(struct XenLegacyDevice *xendev, } /* actual backend drivers */ -extern struct XenDevOps xen_console_ops; /* xen_console.c */ extern struct XenDevOps xen_kbdmouse_ops; /* xen_framebuffer.c */ extern struct XenDevOps xen_framebuffer_ops; /* xen_framebuffer.c */ -extern struct XenDevOps xen_blkdev_ops; /* xen_disk.c */ #ifdef CONFIG_VIRTFS extern struct XenDevOps xen_9pfs_ops; /* xen-9p-backend.c */ #endif -extern struct XenDevOps xen_netdev_ops; /* xen_nic.c */ #ifdef CONFIG_USB_LIBUSB extern struct XenDevOps xen_usb_ops; /* xen-usb.c */ #endif
'xen_blkdev_ops' was removed in commit 19f87870ba ("xen: remove the legacy 'xen_disk' backend"), 'xen_netdev_ops' in commit 25967ff69f ("hw/xen: update Xen PV NIC to XenDevice model") and 'xen_console_ops' in commit 9b77374690 ("hw/xen: update Xen console to XenDevice model"). Remove them. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- include/hw/xen/xen-legacy-backend.h | 3 --- 1 file changed, 3 deletions(-)