Home
last modified time | relevance | path

Searched refs:poll_init (Results 1 – 9 of 9) sorted by relevance

/linux/include/linux/ !
H A Dtty_driver.h407 * @poll_init: ``int ()(struct tty_driver *driver, int line, char *options)``
418 * kgdboc support (see @poll_init). @driver should read a character from a
421 * Optional: called only if @poll_init provided.
425 * kgdboc support (see @poll_init). @driver should write character @ch to
428 * Optional: called only if @poll_init provided.
482 int (*poll_init)(struct tty_driver *driver, int line, char *options); member
H A Dserial_core.h347 * @poll_init: ``int ()(struct uart_port *port)``
403 int (*poll_init)(struct uart_port *); member
/linux/drivers/tty/serial/ !
H A Dtegra-utc.c349 .poll_init = tegra_utc_poll_init,
H A Desp32_uart.c514 .poll_init = esp32_uart_poll_init,
H A Dserial_core.c2648 if (port->ops->poll_init) { in uart_poll_init()
2654 ret = port->ops->poll_init(port); in uart_poll_init()
2733 .poll_init = uart_poll_init,
H A Dfsl_lpuart.c2450 .poll_init = lpuart_poll_init,
2475 .poll_init = lpuart32_poll_init,
H A Dstm32-usart.c1492 .poll_init = stm32_usart_poll_init,
H A Dimx.c2074 .poll_init = imx_uart_poll_init,
/linux/drivers/tty/ !
H A Dtty_io.c407 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) { in tty_find_polling_driver()