From: Roger Pau Monne Date: Mon, 23 Jul 2012 12:09:44 +0000 (+0100) Subject: xenstore: don't print an error when gntdev cannot be opened X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~8170 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f778d0fa882611997cc32d44537116f41e36cabb;p=xen.git xenstore: don't print an error when gntdev cannot be opened NetBSD doesn't have a gntdev, but we should not print an error when falling back to the previous implementation. Signed-off-by: Roger Pau Monne Acked-by: Ian Campbell Committed-by: Ian Campbell --- diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c index 3ceed3e660..3e03a91fba 100644 --- a/tools/libxc/xc_private.c +++ b/tools/libxc/xc_private.c @@ -174,7 +174,7 @@ static struct xc_interface_core *xc_interface_open_common(xentoollog_logger *log xch->ops = xch->osdep.init(xch, type); if ( xch->ops == NULL ) { - ERROR("OSDEP: interface %d (%s) not supported on this platform", + DPRINTF("OSDEP: interface %d (%s) not supported on this platform", type, xc_osdep_type_name(type)); goto err_put_iface; }