aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Mitchell <ehem+freebsd@m5p.com>2021-06-22 04:27:55 +0000
committerRoger Pau Monné <royger@FreeBSD.org>2023-11-28 12:25:35 +0000
commitb37a180f019161c8b3cb67423adf0a330828d380 (patch)
tree7198042970d799246e78b2db9455ff9da9e272ef
parent54a0b7203c30bfa5134ffc21f01c2e106f15e842 (diff)
downloadsrc-b37a180f019161c8b3cb67423adf0a330828d380.tar.gz
src-b37a180f019161c8b3cb67423adf0a330828d380.zip
xen: remove declaration of evtchn_device_upcall()
This function was removed at 5779d8ad577. Long past time to remove the declaration to ensure people aren't confused. Differential Revision: https://reviews.freebsd.org/D30865 Reviewed by: royger
-rw-r--r--sys/xen/evtchn/evtchnvar.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/xen/evtchn/evtchnvar.h b/sys/xen/evtchn/evtchnvar.h
index 1d285abf0c47..10eed8434ebe 100644
--- a/sys/xen/evtchn/evtchnvar.h
+++ b/sys/xen/evtchn/evtchnvar.h
@@ -36,9 +36,6 @@
#include <xen/hypervisor.h>
#include <contrib/xen/event_channel.h>
-/** Submit a port notification for delivery to a userland evtchn consumer */
-void evtchn_device_upcall(evtchn_port_t port);
-
/* Macros for accessing event channel values */
#define EVTCHN_PTR(type, port) \
(HYPERVISOR_shared_info->evtchn_##type + ((port) / __LONG_BIT))