diff options
author | David S. Miller <davem@davemloft.net> | 2011-04-17 20:07:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-17 20:07:57 -0400 |
commit | 9365f11a5321bcff5579799a071a70c5cacb5e65 (patch) | |
tree | be3aa218e506ebe8d5c20910e4cb36b0e49bf340 /drivers/isdn | |
parent | b169f6db40605d0907458d1ff78ceac2b194a44f (diff) |
isdn: i4l: isdn_tty: Fix unused-but-set variables.
The variable 'fcr' is set but not used in isdn_tty_change_speed().
Just kill it off.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/i4l/isdn_tty.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c index 607d846ae063..d8504279e502 100644 --- a/drivers/isdn/i4l/isdn_tty.c +++ b/drivers/isdn/i4l/isdn_tty.c | |||
@@ -998,7 +998,6 @@ isdn_tty_change_speed(modem_info * info) | |||
998 | { | 998 | { |
999 | uint cflag, | 999 | uint cflag, |
1000 | cval, | 1000 | cval, |
1001 | fcr, | ||
1002 | quot; | 1001 | quot; |
1003 | int i; | 1002 | int i; |
1004 | 1003 | ||
@@ -1037,7 +1036,6 @@ isdn_tty_change_speed(modem_info * info) | |||
1037 | cval |= UART_LCR_PARITY; | 1036 | cval |= UART_LCR_PARITY; |
1038 | if (!(cflag & PARODD)) | 1037 | if (!(cflag & PARODD)) |
1039 | cval |= UART_LCR_EPAR; | 1038 | cval |= UART_LCR_EPAR; |
1040 | fcr = 0; | ||
1041 | 1039 | ||
1042 | /* CTS flow control flag and modem status interrupts */ | 1040 | /* CTS flow control flag and modem status interrupts */ |
1043 | if (cflag & CRTSCTS) { | 1041 | if (cflag & CRTSCTS) { |