Lines Matching full:hvc
28 #include <xen/hvc-console.h>
42 struct hvc_struct *hvc; member
117 * necessary. We don't ever want to rely on the hvc daemon in domU_write_console()
368 if (info->hvc != NULL) in xencons_disconnect_backend()
369 hvc_remove(info->hvc); in xencons_disconnect_backend()
370 info->hvc = NULL; in xencons_disconnect_backend()
418 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid), in xencons_connect_backend()
420 if (IS_ERR(info->hvc)) in xencons_connect_backend()
421 return PTR_ERR(info->hvc); in xencons_connect_backend()
585 info->hvc = hvc_alloc(HVC_COOKIE, info->irq, ops, 256); in xen_hvc_init()
586 if (IS_ERR(info->hvc)) { in xen_hvc_init()
587 r = PTR_ERR(info->hvc); in xen_hvc_init()