Driver/tiniy_serial/default

Last-modified: 2007-09-19 (水) 11:35:12

047 :static void tiny_stop_tx(struct uart_port *port, unsigned int tty_stop)
048 :{
049 :}
050 :
051 :static void tiny_stop_rx(struct uart_port *port)
052 :{
053 :}
054 :
055 :static void tiny_enable_ms(struct uart_port *port)
056 :{
057 :}
091 :static void tiny_start_tx(struct uart_port *port, unsigned int tty_start)
092 :{
093 :}

124 :static unsigned int tiny_tx_empty(struct uart_port *port)
125 :{
126 : return 0;
127 :}
128 :
129 :static unsigned int tiny_get_mctrl(struct uart_port *port)
130 :{
131 : return 0;
132 :}
133 :
134 :static void tiny_set_mctrl(struct uart_port *port, unsigned int mctrl)
135 :{
136 :}
137 :
138 :static void tiny_break_ctl(struct uart_port *port, int break_state)
139 :{
140 :}

218 :static const char *tiny_type(struct uart_port *port)
219 :{
220 : return "tinytty";
221 :}
222 :
223 :static void tiny_release_port(struct uart_port *port)
224 :{
225 :
226 :}
227 :
228 :static int tiny_request_port(struct uart_port *port)
229 :{
230 : return 0;
231 :}
232 :
233 :static void tiny_config_port(struct uart_port *port, int flags)
234 :{
235 :}
236 :
237 :static int tiny_verify_port(struct uart_port *port, struct serial_struct *ser)
238 :{
239 : return 0;
240 :}