From: Jiri Slaby Date: Wed, 20 Mar 2013 14:30:57 +0000 (+0100) Subject: CAIF: fix tty->warned build error X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0d3b88d187d02c910fce62ee4d14fb29617f21ba;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git 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 Reported-by: Stephen Rothwell Cc: Sjur Braendeland Cc: netdev@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/caif/caif_serial.c b/drivers/net/caif/caif_serial.c index d1bf0ff93ae0..be90debc7cd1 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) {