mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-14 09:09:56 +00:00
isdn: elsa_ser: Fix set-but-unused variables.
The variable 'bits' is set but unused in change_speed(). Just kill it off. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
94dbe1ae44
commit
db47367451
@ -109,11 +109,10 @@ static void change_speed(struct IsdnCardState *cs, int baud)
|
||||
{
|
||||
int quot = 0, baud_base;
|
||||
unsigned cval, fcr = 0;
|
||||
int bits;
|
||||
|
||||
|
||||
/* byte size and parity */
|
||||
cval = 0x03; bits = 10;
|
||||
cval = 0x03;
|
||||
/* Determine divisor based on baud rate */
|
||||
baud_base = BASE_BAUD;
|
||||
quot = baud_base / baud;
|
||||
|
Loading…
x
Reference in New Issue
Block a user