greybus: uart: Update line coding settings only when needed
The check for line coding changed should use memcmp and not memcpy. Testing done: trivial Reviewed-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Axel Haslam <ahaslam@baylibre.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Родитель
41d514020f
Коммит
b4b1b7eda9
|
@ -383,7 +383,7 @@ static void gb_tty_set_termios(struct tty_struct *tty,
|
|||
send_control(gb_tty, newctrl);
|
||||
}
|
||||
|
||||
if (memcpy(&gb_tty->line_coding, &newline, sizeof(newline))) {
|
||||
if (memcmp(&gb_tty->line_coding, &newline, sizeof(newline))) {
|
||||
memcpy(&gb_tty->line_coding, &newline, sizeof(newline));
|
||||
send_line_coding(gb_tty);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче