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

tty: make everyone's chars_in_buffer return >= 0



The tty line disciplines don't expect tty_operations::chars_in_buffer to
return negative values. Fix the two drivers which violate this.

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


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ab78b0c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3056,7 +3056,7 @@ static int gsmtty_chars_in_buffer(struct tty_struct *tty)
{
	struct gsm_dlci *dlci = tty->driver_data;
	if (dlci->state == DLCI_CLOSED)
		return -EINVAL;
		return 0;
	return kfifo_len(&dlci->fifo);
}

+1 −1
Original line number Diff line number Diff line
@@ -896,7 +896,7 @@ static int vcc_chars_in_buffer(struct tty_struct *tty)
	port = vcc_get_ne(tty->index);
	if (unlikely(!port)) {
		pr_err("VCC: chars_in_buffer: Failed to find VCC port\n");
		return -ENODEV;
		return 0;
	}

	num = port->chars_in_buffer;