Searched defs:hvc (Results 1 - 3 of 3) sorted by relevance

/drivers/tty/hvc/
H A Dhvc_xen.c38 #include <xen/hvc-console.h>
50 struct hvc_struct *hvc; member in struct:xencons_info
121 * necessary. We don't ever want to rely on the hvc daemon
321 if (info->hvc != NULL)
322 hvc_remove(info->hvc);
323 info->hvc = NULL;
375 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid),
377 if (IS_ERR(info->hvc))
378 return PTR_ERR(info->hvc);
544 info->hvc
[all...]
H A Dhvc_iucv.c64 struct hvc_struct *hvc; /* HVC struct reference */ member in struct:hvc_iucv_private
99 /* Array of allocated hvc iucv tty lines... */
279 /* The caller must ensure that the hvc is locked, which
281 __hvc_resize(priv->hvc, *((struct winsize *) rb->mbuf->data));
556 * hvc_iucv_hangup() - Sever IUCV path and schedule hvc tty hang up
859 hvc_kick(); /* wake up hvc thread */
984 /* allocate hvc device */
985 priv->hvc = hvc_alloc(HVC_IUCV_MAGIC + id, /* PAGE_SIZE */
987 if (IS_ERR(priv->hvc)) {
988 rc = PTR_ERR(priv->hvc);
[all...]
/drivers/char/
H A Dvirtio_console.c38 #include "../tty/hvc/hvc_console.h"
45 * that callbacks from hvc for get_chars(), put_chars() work properly
62 * This is used to keep track of the number of hvc consoles
86 /* The hvc device associated with this console port */
87 struct hvc_struct *hvc; member in struct:console
94 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
95 * number passed on by the hvc callbacks to us to
198 * hooked up to an hvc console
321 if (port->cons.hvc)
802 * via /dev/hvc
[all...]

Completed in 75 milliseconds