Lines Matching full:hvc
28 #include <xen/hvc-console.h>
42 struct hvc_struct *hvc; member
122 * necessary. We don't ever want to rely on the hvc daemon in domU_write_console()
366 if (info->hvc != NULL) in xencons_disconnect_backend()
367 hvc_remove(info->hvc); in xencons_disconnect_backend()
368 info->hvc = NULL; in xencons_disconnect_backend()
430 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid), in xencons_connect_backend()
432 if (IS_ERR(info->hvc)) in xencons_connect_backend()
433 return PTR_ERR(info->hvc); in xencons_connect_backend()
552 if (info->hvc) { in xencons_backend_changed()
553 hvc_remove(info->hvc); in xencons_backend_changed()
554 info->hvc = NULL; in xencons_backend_changed()
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()