aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_netbsd.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-10-13 10:32:09 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-10-13 10:32:09 +0100
commitd5a95e2863a7025ff5d416146705b82a57fffa73 (patch)
tree7dacf5187f336400af74ce60f9b48b2287d5ca60 /tools/libxc/xc_netbsd.c
parent10befefe28405f9c439066a64625738be3fd38f9 (diff)
downloadxen-d5a95e2863a7025ff5d416146705b82a57fffa73.tar.gz
xen-d5a95e2863a7025ff5d416146705b82a57fffa73.tar.bz2
xen-d5a95e2863a7025ff5d416146705b82a57fffa73.zip
libxc: osdep: report missing backends in common code
Backends were inconsistent about reporting and it's a pain to edit them all when adding a new class of osdep. Signed-off-by: Ian Campbell <Ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson.citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com> --- Requires Daniel De Graaf's "libxc: add xc_gntshr_* functions"
Diffstat (limited to 'tools/libxc/xc_netbsd.c')
-rw-r--r--tools/libxc/xc_netbsd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/libxc/xc_netbsd.c b/tools/libxc/xc_netbsd.c
index 72e1c28517..0f49e30ad1 100644
--- a/tools/libxc/xc_netbsd.c
+++ b/tools/libxc/xc_netbsd.c
@@ -386,9 +386,6 @@ static struct xc_osdep_ops *netbsd_osdep_init(xc_interface *xch, enum xc_osdep_t
return &netbsd_privcmd_ops;
case XC_OSDEP_EVTCHN:
return &netbsd_evtchn_ops;
- case XC_OSDEP_GNTTAB:
- ERROR("GNTTAB interface not supported on this platform");
- return NULL;
default:
return NULL;
}