From bd4072be69c82e7a868f1a2e0726440cde075ed4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 23 Apr 2017 20:03:32 -0500 Subject: gensh2/console/config.c: Fix to reflect struct termios change --- c/src/lib/libbsp/sh/gensh2/console/config.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/c/src/lib/libbsp/sh/gensh2/console/config.c b/c/src/lib/libbsp/sh/gensh2/console/config.c index 6d2c7dea2d..a2f25742dd 100644 --- a/c/src/lib/libbsp/sh/gensh2/console/config.c +++ b/c/src/lib/libbsp/sh/gensh2/console/config.c @@ -63,19 +63,21 @@ const console_fns sh_sci_fns_polled = static const struct termios term1 = { 0, 0, - B9600 | CS8, 0, 0, - { 0 } + {0}, + B9600 | CS8, + B9600 | CS8 }; static const struct termios term2 = { 0, 0, - B115200 | CS8, 0, 0, - { 0 } + {0}, + B115200 | CS8, + B115200 | CS8 }; console_tbl Console_Configuration_Ports[] = { -- cgit v1.2.3