Home
last modified time | relevance | path

Searched refs:console_device (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/beep/files/
H A Dlinux-input.patch24 +char *console_device = NULL;
32 + if(console_device)
33 + free(console_device);
73 + console_device = strdup(optarg);
113 + if(console_device)
114 + console_fd = open(console_device, O_WRONLY);
122 + console_device != NULL ? console_device : "/dev/tty0 or /dev/vc/0");
151 + if(console_device)
152 + free(console_device);
/OK3568_Linux_fs/kernel/include/linux/
H A Dconsole.h181 extern struct tty_driver *console_device(int *);
/OK3568_Linux_fs/kernel/kernel/printk/
H A Dprintk.c2670 struct tty_driver *console_device(int *index) in console_device() function
/OK3568_Linux_fs/kernel/drivers/tty/
H A Dtty_io.c1934 struct tty_driver *console_driver = console_device(index); in tty_lookup_driver()