Commit fc0df90b authored by Jiri Slaby's avatar Jiri Slaby Committed by Greg Kroah-Hartman
Browse files

n_tty: remove superfluous return from n_tty_receive_signal_char



A return at the end of a void-returning function is superfluous. Get rid
of it.

Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20210505091928.22010-11-jslaby@suse.cz


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e8f2a139
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1245,7 +1245,6 @@ n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
		commit_echoes(tty);
	} else
		process_echoes(tty);
	return;
}

/**