Lines Matching refs:uart_t
54 struct uart_t { struct
64 int (*init) (int fd, struct uart_t *u, struct termios *ti); argument
65 int (*post) (int fd, struct uart_t *u, struct termios *ti); argument
214 static int ericsson(int fd, struct uart_t *u, struct termios *ti)
269 static int digi(int fd, struct uart_t *u, struct termios *ti)
303 static int texas(int fd, struct uart_t *u, struct termios *ti)
308 static int texas2(int fd, struct uart_t *u, struct termios *ti)
313 static int texasalt(int fd, struct uart_t *u, struct termios *ti)
381 static int bcsp(int fd, struct uart_t *u, struct termios *ti) in bcsp()
517 static int csr(int fd, struct uart_t *u, struct termios *ti)
687 static int swave(int fd, struct uart_t *u, struct termios *ti)
792 static int st(int fd, struct uart_t *u, struct termios *ti)
844 static int stlc2500(int fd, struct uart_t *u, struct termios *ti)
884 static int bgb2xx(int fd, struct uart_t *u, struct termios *ti)
897 static int bcm2035(int fd, struct uart_t *u, struct termios *ti)
1035 static int realtek_init(int fd, struct uart_t *u, struct termios *ti) in realtek_init()
1042 static int realtek_post(int fd, struct uart_t *u, struct termios *ti) in realtek_post()
1048 struct uart_t uart[] = {
1131 static struct uart_t * get_by_id(int m_id, int p_id) in get_by_id()
1141 static struct uart_t * get_by_type(char *type) in get_by_type()
1152 static int init_uart(char *dev, struct uart_t *u, int send_break, int raw) in init_uart()
1244 struct uart_t *u = NULL; in main()