From: Matthias Urlichs <smurf@smurf.noris.de>
Date: Fri, 29 Sep 2006 08:59:37 +0000 (-0700)
Subject: [PATCH] Remove unused tty_struct field
X-Git-Tag: firefly_0821_release~33169
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=402749ea2538be9ddad981a990739b93a0178bc6;p=firefly-linux-kernel-4.4.55.git

[PATCH] Remove unused tty_struct field

Unused: tty_struct.max_flip_cnt

$ git grep max_flip_cnt
include/linux/tty.h:    int max_flip_cnt;
$

Cc: Paul Fulghum <paulkf@microgate.com>
Acked-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
---

diff --git a/include/linux/tty.h b/include/linux/tty.h
index 04827ca65781..d1dec3d0c814 100644
--- a/include/linux/tty.h
+++ b/include/linux/tty.h
@@ -190,7 +190,6 @@ struct tty_struct {
 	struct tty_struct *link;
 	struct fasync_struct *fasync;
 	struct tty_bufhead buf;
-	int max_flip_cnt;
 	int alt_speed;		/* For magic substitution of 38400 bps */
 	wait_queue_head_t write_wait;
 	wait_queue_head_t read_wait;