Lines Matching defs:port

51 static bool is_enabled(struct uart_port *port, int bit)  in is_enabled()
60 static void enable(struct uart_port *port, int bit) in enable()
67 static void disable(struct uart_port *port, int bit) in disable()
74 #define is_tx_enabled(port) is_enabled(port, tx_enabled_bit) argument
75 #define tx_enable(port) enable(port, tx_enabled_bit) argument
76 #define tx_disable(port) disable(port, tx_enabled_bit) argument
78 #define is_rx_enabled(port) is_enabled(port, rx_enabled_bit) argument
79 #define rx_enable(port) enable(port, rx_enabled_bit) argument
80 #define rx_disable(port) disable(port, rx_enabled_bit) argument
93 static void serial21285_stop_tx(struct uart_port *port) in serial21285_stop_tx()
101 static void serial21285_start_tx(struct uart_port *port) in serial21285_start_tx()
109 static void serial21285_stop_rx(struct uart_port *port) in serial21285_stop_rx()
119 struct uart_port *port = dev_id; in serial21285_rx_chars() local
157 struct uart_port *port = dev_id; in serial21285_tx_chars() local
168 static unsigned int serial21285_tx_empty(struct uart_port *port) in serial21285_tx_empty()
174 static unsigned int serial21285_get_mctrl(struct uart_port *port) in serial21285_get_mctrl()
179 static void serial21285_set_mctrl(struct uart_port *port, unsigned int mctrl) in serial21285_set_mctrl()
183 static void serial21285_break_ctl(struct uart_port *port, int break_state) in serial21285_break_ctl()
198 static int serial21285_startup(struct uart_port *port) in serial21285_startup()
217 static void serial21285_shutdown(struct uart_port *port) in serial21285_shutdown()
224 serial21285_set_termios(struct uart_port *port, struct ktermios *termios, in serial21285_set_termios()
315 static const char *serial21285_type(struct uart_port *port) in serial21285_type()
320 static void serial21285_release_port(struct uart_port *port) in serial21285_release_port()
325 static int serial21285_request_port(struct uart_port *port) in serial21285_request_port()
331 static void serial21285_config_port(struct uart_port *port, int flags) in serial21285_config_port()
340 static int serial21285_verify_port(struct uart_port *port, struct serial_struct *ser) in serial21285_verify_port()
385 static void serial21285_console_putchar(struct uart_port *port, unsigned char ch) in serial21285_console_putchar()
400 serial21285_get_options(struct uart_port *port, int *baud, in serial21285_get_options()
437 struct uart_port *port = &serial21285_port; in serial21285_console_setup() local