summaryrefslogtreecommitdiff
path: root/drivers/net/caif
diff options
context:
space:
mode:
authorJiri Slaby <jslaby@suse.cz>2013-03-20 14:30:57 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 21:07:34 (GMT)
commit0d3b88d187d02c910fce62ee4d14fb29617f21ba (patch)
tree82c5331b7b8d970fb7471cfde2d5fa59c226ec0e /drivers/net/caif
parent30215c3b8f36cc532267615ceade3657a9bd9563 (diff)
downloadlinux-0d3b88d187d02c910fce62ee4d14fb29617f21ba.tar.xz
CAIF: fix tty->warned build error
After commit 6865ff222cca ("TTY: do not warn about setting speed via SPD_*"), we are seeing a build error when DEBUG_FS is enabled: drivers/net/caif/caif_serial.c: In function 'update_tty_status': drivers/net/caif/caif_serial.c:94:11: error: 'struct tty_struct' has no member named 'warned' Fix the error by removing the reference to the variable as it was not set in the last decade (as documented in the changelog of the commit above). Signed-off-by: Jiri Slaby <jslaby@suse.cz> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Sjur Braendeland <sjur.brandeland@stericsson.com> Cc: netdev@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net/caif')
-rw-r--r--drivers/net/caif/caif_serial.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/caif/caif_serial.c b/drivers/net/caif/caif_serial.c
index d1bf0ff..be90deb 100644
--- a/drivers/net/caif/caif_serial.c
+++ b/drivers/net/caif/caif_serial.c
@@ -90,8 +90,7 @@ static inline void update_tty_status(struct ser_device *ser)
ser->tty->stopped << 5 |
ser->tty->flow_stopped << 3 |
ser->tty->packet << 2 |
- ser->tty->port->low_latency << 1 |
- ser->tty->warned;
+ ser->tty->port->low_latency << 1;
}
static inline void debugfs_init(struct ser_device *ser, struct tty_struct *tty)
{