Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dtty_driver.h321 * @poll_init: ``int ()(struct tty_driver *driver, int line, char *options)``
332 * kgdboc support (see @poll_init). @driver should read a character from a
335 * Optional: called only if @poll_init provided.
339 * kgdboc support (see @poll_init). @driver should write character @ch to
342 * Optional: called only if @poll_init provided.
396 int (*poll_init)(struct tty_driver *driver, int line, char *options);
388 int (*poll_init)(struct tty_driver *driver, int line, char *options); global() member
H A Dserial_core.h403 int (*poll_init)(struct uart_port *); member
/linux/drivers/tty/hvc/
H A Dhvc_console.c901 .poll_init = hvc_poll_init,
/linux/drivers/tty/serial/
H A Desp32_uart.c514 .poll_init = esp32_uart_poll_init,
H A Dserial_core.c2693 if (port->ops->poll_init) { in uart_poll_init()
2699 ret = port->ops->poll_init(port); in uart_poll_init()
2778 .poll_init = uart_poll_init,
H A Damba-pl011.c2261 .poll_init = pl011_hwinit,
2290 .poll_init = pl011_hwinit,
H A Dsprd_serial.c965 .poll_init = sprd_poll_init,
H A Dfsl_lpuart.c2434 .poll_init = lpuart_poll_init,
2459 .poll_init = lpuart32_poll_init,
H A Dqcom_geni_serial.c1615 .poll_init = qcom_geni_serial_poll_init,
H A Dstm32-usart.c1494 .poll_init = stm32_usart_poll_init,
H A Dimx.c2067 .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()