[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20091201075744.4456.48125.sendpatchset@localhost.localdomain>
Date: Tue, 1 Dec 2009 02:54:44 -0500
From: Amerigo Wang <amwang@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Alan Cox <alan@...ux.intel.com>, akpm@...ux-foundation.org,
Greg Kroah-Hartman <gregkh@...e.de>,
Joe Peterson <joe@...rush.com>,
Amerigo Wang <amwang@...hat.com>
Subject: [Patch] tty: move a definition out of switch block
It's not good to leave a definition between 'switch'
and its first label. Move it out of the switch block.
Signed-off-by: WANG Cong <amwang@...hat.com>
Cc: Alan Cox <alan@...ux.intel.com>
Cc: Joe Peterson <joe@...rush.com>
Cc: Greg Kroah-Hartman <gregkh@...e.de>
---
diff --git a/drivers/char/n_tty.c b/drivers/char/n_tty.c
index 2e50f4d..233aa3d 100644
--- a/drivers/char/n_tty.c
+++ b/drivers/char/n_tty.c
@@ -502,6 +502,7 @@ static void process_echoes(struct tty_struct *tty)
unsigned char op;
unsigned char *opp;
int no_space_left = 0;
+ unsigned int num_chars, num_bs;
/*
* If the buffer byte is the start of a multi-byte
@@ -514,8 +515,6 @@ static void process_echoes(struct tty_struct *tty)
op = *opp;
switch (op) {
- unsigned int num_chars, num_bs;
-
case ECHO_OP_ERASE_TAB:
if (++opp == buf_end)
opp -= N_TTY_BUF_SIZE;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists