Lines Matching full:hvc
28 #include <xen/hvc-console.h>
42 struct hvc_struct *hvc; member
127 * necessary. We don't ever want to rely on the hvc daemon in domU_write_console()
389 if (info->hvc != NULL) in xencons_disconnect_backend()
390 hvc_remove(info->hvc); in xencons_disconnect_backend()
391 info->hvc = NULL; in xencons_disconnect_backend()
441 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid), in xencons_connect_backend()
443 if (IS_ERR(info->hvc)) in xencons_connect_backend()
444 return PTR_ERR(info->hvc); in xencons_connect_backend()
610 info->hvc = hvc_alloc(HVC_COOKIE, info->irq, ops, 256); in xen_hvc_init()
611 if (IS_ERR(info->hvc)) { in xen_hvc_init()
614 r = PTR_ERR(info->hvc); in xen_hvc_init()