diff options
Diffstat (limited to 'drivers/char/hvcs.c')
-rw-r--r-- | drivers/char/hvcs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/char/hvcs.c b/drivers/char/hvcs.c index d090622f1dea..207f7343ba60 100644 --- a/drivers/char/hvcs.c +++ b/drivers/char/hvcs.c | |||
@@ -192,11 +192,13 @@ MODULE_VERSION(HVCS_DRIVER_VERSION); | |||
192 | * that will cause echoing or we'll go into recursive loop echoing chars back | 192 | * that will cause echoing or we'll go into recursive loop echoing chars back |
193 | * and forth with the console drivers. | 193 | * and forth with the console drivers. |
194 | */ | 194 | */ |
195 | static struct termios hvcs_tty_termios = { | 195 | static struct ktermios hvcs_tty_termios = { |
196 | .c_iflag = IGNBRK | IGNPAR, | 196 | .c_iflag = IGNBRK | IGNPAR, |
197 | .c_oflag = OPOST, | 197 | .c_oflag = OPOST, |
198 | .c_cflag = B38400 | CS8 | CREAD | HUPCL, | 198 | .c_cflag = B38400 | CS8 | CREAD | HUPCL, |
199 | .c_cc = INIT_C_CC | 199 | .c_cc = INIT_C_CC, |
200 | .c_ispeed = 38400, | ||
201 | .c_ospeed = 38400 | ||
200 | }; | 202 | }; |
201 | 203 | ||
202 | /* | 204 | /* |