Lines Matching full:hvc
28 #include <xen/hvc-console.h>
42 struct hvc_struct *hvc; member
128 * necessary. We don't ever want to rely on the hvc daemon in domU_write_console()
381 if (info->hvc != NULL) in xencons_disconnect_backend()
382 hvc_remove(info->hvc); in xencons_disconnect_backend()
383 info->hvc = NULL; in xencons_disconnect_backend()
445 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid), in xencons_connect_backend()
447 if (IS_ERR(info->hvc)) in xencons_connect_backend()
448 return PTR_ERR(info->hvc); in xencons_connect_backend()
568 if (info->hvc) { in xencons_backend_changed()
569 hvc_remove(info->hvc); in xencons_backend_changed()
570 info->hvc = NULL; in xencons_backend_changed()
627 info->hvc = hvc_alloc(HVC_COOKIE, info->irq, ops, 256); in xen_hvc_init()
628 if (IS_ERR(info->hvc)) { in xen_hvc_init()
631 r = PTR_ERR(info->hvc); in xen_hvc_init()