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

Commit 038bc7ac authored by Lidza Louina's avatar Lidza Louina Committed by Greg Kroah-Hartman
Browse files

staging: dgap: tty.c: fixes incompatible type error



This patch fixes the error: incompatible types when
assigning to type ‘struct ktermios *’ from type
‘struct ktermios’

Signed-off-by: default avatarLidza Louina <lidza.louina@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent acccb454
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1421,7 +1421,7 @@ static void dgap_tty_close(struct tty_struct *tty, struct file *file)
	if (!bd || bd->magic != DGAP_BOARD_MAGIC)
		return;

	ts = tty->termios;
	ts = &tty->termios;

	DPR_CLOSE(("Close called\n"));