Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 970a8a51 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds
Browse files

m68k/amiserial: fix fallout of tty break handling rework



commit 9e98966c (tty: rework break handling)
forgot to update one exit point of rs_break() in the Amiga serial driver.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2e4f40d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1254,7 +1254,7 @@ static int rs_break(struct tty_struct *tty, int break_state)
	unsigned long flags;

	if (serial_paranoia_check(info, tty->name, "rs_break"))
		return;
		return -EINVAL;

	local_irq_save(flags);
	if (break_state == -1)