serial_txx9.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | serial_txx9.c (2331e06865047a0c4ff3fb838716210e7a296a4d) |
---|---|
1/* 2 * Derived from many drivers using generic_serial interface, 3 * especially serial_tx3912.c by Steven J. Hill and r39xx_serial.c 4 * (was in Linux/VR tree) by Jim Pick. 5 * 6 * Copyright (C) 1999 Harald Koerfgen 7 * Copyright (C) 2000 Jim Pick <jim@jimpick.com> 8 * Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com) --- 831 unchanged lines hidden (view full) --- 840} 841 842static const char * 843serial_txx9_type(struct uart_port *port) 844{ 845 return "txx9"; 846} 847 | 1/* 2 * Derived from many drivers using generic_serial interface, 3 * especially serial_tx3912.c by Steven J. Hill and r39xx_serial.c 4 * (was in Linux/VR tree) by Jim Pick. 5 * 6 * Copyright (C) 1999 Harald Koerfgen 7 * Copyright (C) 2000 Jim Pick <jim@jimpick.com> 8 * Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com) --- 831 unchanged lines hidden (view full) --- 840} 841 842static const char * 843serial_txx9_type(struct uart_port *port) 844{ 845 return "txx9"; 846} 847 |
848static struct uart_ops serial_txx9_pops = { | 848static const struct uart_ops serial_txx9_pops = { |
849 .tx_empty = serial_txx9_tx_empty, 850 .set_mctrl = serial_txx9_set_mctrl, 851 .get_mctrl = serial_txx9_get_mctrl, 852 .stop_tx = serial_txx9_stop_tx, 853 .start_tx = serial_txx9_start_tx, 854 .stop_rx = serial_txx9_stop_rx, 855 .break_ctl = serial_txx9_break_ctl, 856 .startup = serial_txx9_startup, --- 472 unchanged lines hidden --- | 849 .tx_empty = serial_txx9_tx_empty, 850 .set_mctrl = serial_txx9_set_mctrl, 851 .get_mctrl = serial_txx9_get_mctrl, 852 .stop_tx = serial_txx9_stop_tx, 853 .start_tx = serial_txx9_start_tx, 854 .stop_rx = serial_txx9_stop_rx, 855 .break_ctl = serial_txx9_break_ctl, 856 .startup = serial_txx9_startup, --- 472 unchanged lines hidden --- |