diff options
Diffstat (limited to 'drivers/tty/serial/sunsu.c')
| -rw-r--r-- | drivers/tty/serial/sunsu.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/tty/serial/sunsu.c b/drivers/tty/serial/sunsu.c index 675303b8ed84..b97913dcdbff 100644 --- a/drivers/tty/serial/sunsu.c +++ b/drivers/tty/serial/sunsu.c | |||
| @@ -58,10 +58,16 @@ | |||
| 58 | enum su_type { SU_PORT_NONE, SU_PORT_MS, SU_PORT_KBD, SU_PORT_PORT }; | 58 | enum su_type { SU_PORT_NONE, SU_PORT_MS, SU_PORT_KBD, SU_PORT_PORT }; |
| 59 | static char *su_typev[] = { "su(???)", "su(mouse)", "su(kbd)", "su(serial)" }; | 59 | static char *su_typev[] = { "su(???)", "su(mouse)", "su(kbd)", "su(serial)" }; |
| 60 | 60 | ||
| 61 | struct serial_uart_config { | ||
| 62 | char *name; | ||
| 63 | int dfl_xmit_fifo_size; | ||
| 64 | int flags; | ||
| 65 | }; | ||
| 66 | |||
| 61 | /* | 67 | /* |
| 62 | * Here we define the default xmit fifo size used for each type of UART. | 68 | * Here we define the default xmit fifo size used for each type of UART. |
| 63 | */ | 69 | */ |
| 64 | static const struct serial_uart_config uart_config[PORT_MAX_8250+1] = { | 70 | static const struct serial_uart_config uart_config[] = { |
| 65 | { "unknown", 1, 0 }, | 71 | { "unknown", 1, 0 }, |
| 66 | { "8250", 1, 0 }, | 72 | { "8250", 1, 0 }, |
| 67 | { "16450", 1, 0 }, | 73 | { "16450", 1, 0 }, |
