diff options
author | Lidza Louina <lidza.louina@gmail.com> | 2013-08-21 21:48:32 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-22 10:12:42 -0700 |
commit | fc5a89904c8a6ef9bc47cecd1e068b8ba285dc22 (patch) | |
tree | cacd42c8eb808cbe962f419986f6221f2a0e3ca5 | |
parent | c84b8b503eaccf5c9e7b9f78553cbed8e97a9230 (diff) | |
download | blackbird-obmc-linux-fc5a89904c8a6ef9bc47cecd1e068b8ba285dc22.tar.gz blackbird-obmc-linux-fc5a89904c8a6ef9bc47cecd1e068b8ba285dc22.zip |
staging: dgap: fixes incompatible type error
This patch fixes the error: incompatible types
when assigning to type ‘struct ktermios *’ from
type ‘struct ktermios’
Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/dgap/dgap_fep5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/dgap/dgap_fep5.c b/drivers/staging/dgap/dgap_fep5.c index ed3cb151d6da..ce87752b9172 100644 --- a/drivers/staging/dgap/dgap_fep5.c +++ b/drivers/staging/dgap/dgap_fep5.c @@ -1260,7 +1260,7 @@ int dgap_param(struct tty_struct *tty) DPR_PARAM(("param start: tdev: %x cflags: %x oflags: %x iflags: %x\n", ch->ch_tun.un_dev, ch->ch_c_cflag, ch->ch_c_oflag, ch->ch_c_iflag)); - ts = tty->termios; + ts = &tty->termios; /* * If baud rate is zero, flush queues, and set mval to drop DTR. |