diff options
| author | Adam Borowski <kilobyte@angband.pl> | 2014-02-19 01:40:16 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-28 16:25:47 -0800 | 
| commit | b290af68de57196e7cb34805f41cd3416ed1a791 (patch) | |
| tree | 00d89324b9e30ec093c9cf6f9b8c0e2ba66db913 | |
| parent | bd2fe272a8ec3841189e07a9a8e9879fe26a3cdc (diff) | |
vt: drop an useless enum and assignment.
Signed-off-by: Adam Borowski <kilobyte@angband.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/tty/vt/vt.c | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 23b5d32954bf..b7bde54db138 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c @@ -1590,7 +1590,7 @@ static void restore_cur(struct vc_data *vc)  	vc->vc_need_wrap = 0;  } -enum { ESnormal, ESesc, ESsquare, ESgetpars, ESgotpars, ESfunckey, +enum { ESnormal, ESesc, ESsquare, ESgetpars, ESfunckey,  	EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd,  	ESpalette }; @@ -1807,9 +1807,7 @@ static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c)  			vc->vc_par[vc->vc_npar] *= 10;  			vc->vc_par[vc->vc_npar] += c - '0';  			return; -		} else -			vc->vc_state = ESgotpars; -	case ESgotpars: +		}  		vc->vc_state = ESnormal;  		switch(c) {  		case 'h': | 
