Driver/tiny_serial/tiny_ops

Last-modified: 2007-09-19 (水) 11:33:02

242 :static struct uart_ops tiny_ops = {
243 : .tx_empty = tiny_tx_empty,
244 : .set_mctrl = tiny_set_mctrl,
245 : .get_mctrl = tiny_get_mctrl,
246 : .stop_tx = tiny_stop_tx,
247 : .start_tx = tiny_start_tx,
248 : .stop_rx = tiny_stop_rx,
249 : .enable_ms = tiny_enable_ms,
250 : .break_ctl = tiny_break_ctl,
251 : .startup = tiny_startup,
252 : .shutdown = tiny_shutdown,
253 : .set_termios = tiny_set_termios,
254 : .type = tiny_type,
255 : .release_port = tiny_release_port,
256 : .request_port = tiny_request_port,
257 : .config_port = tiny_config_port,
258 : .verify_port = tiny_verify_port,
259 :};