pxa.c (0cce284537fb42d9c28b9b31038ffc9b464555f5) | pxa.c (2331e06865047a0c4ff3fb838716210e7a296a4d) |
---|---|
1/* 2 * Based on drivers/serial/8250.c by Russell King. 3 * 4 * Author: Nicolas Pitre 5 * Created: Feb 20, 2003 6 * Copyright: (C) 2003 Monta Vista Software, Inc. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 748 unchanged lines hidden (view full) --- 757 .data = &serial_pxa_reg, 758}; 759 760#define PXA_CONSOLE &serial_pxa_console 761#else 762#define PXA_CONSOLE NULL 763#endif 764 | 1/* 2 * Based on drivers/serial/8250.c by Russell King. 3 * 4 * Author: Nicolas Pitre 5 * Created: Feb 20, 2003 6 * Copyright: (C) 2003 Monta Vista Software, Inc. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 748 unchanged lines hidden (view full) --- 757 .data = &serial_pxa_reg, 758}; 759 760#define PXA_CONSOLE &serial_pxa_console 761#else 762#define PXA_CONSOLE NULL 763#endif 764 |
765static struct uart_ops serial_pxa_pops = { | 765static const struct uart_ops serial_pxa_pops = { |
766 .tx_empty = serial_pxa_tx_empty, 767 .set_mctrl = serial_pxa_set_mctrl, 768 .get_mctrl = serial_pxa_get_mctrl, 769 .stop_tx = serial_pxa_stop_tx, 770 .start_tx = serial_pxa_start_tx, 771 .stop_rx = serial_pxa_stop_rx, 772 .enable_ms = serial_pxa_enable_ms, 773 .break_ctl = serial_pxa_break_ctl, --- 171 unchanged lines hidden --- | 766 .tx_empty = serial_pxa_tx_empty, 767 .set_mctrl = serial_pxa_set_mctrl, 768 .get_mctrl = serial_pxa_get_mctrl, 769 .stop_tx = serial_pxa_stop_tx, 770 .start_tx = serial_pxa_start_tx, 771 .stop_rx = serial_pxa_stop_rx, 772 .enable_ms = serial_pxa_enable_ms, 773 .break_ctl = serial_pxa_break_ctl, --- 171 unchanged lines hidden --- |