Lines Matching full:hvc
28 #include <xen/hvc-console.h>
40 struct hvc_struct *hvc; member
111 * necessary. We don't ever want to rely on the hvc daemon in domU_write_console()
333 if (info->hvc != NULL) in xencons_disconnect_backend()
334 hvc_remove(info->hvc); in xencons_disconnect_backend()
335 info->hvc = NULL; in xencons_disconnect_backend()
383 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid), in xencons_connect_backend()
385 if (IS_ERR(info->hvc)) in xencons_connect_backend()
386 return PTR_ERR(info->hvc); in xencons_connect_backend()
549 info->hvc = hvc_alloc(HVC_COOKIE, info->irq, ops, 256); in xen_hvc_init()
550 if (IS_ERR(info->hvc)) { in xen_hvc_init()
551 r = PTR_ERR(info->hvc); in xen_hvc_init()