diff options
author | David S. Miller <davem@davemloft.net> | 2011-04-17 19:41:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-17 19:41:29 -0400 |
commit | f6f0e4a7a343f85dd773f6f18e553933c4367e96 (patch) | |
tree | 608adafda9ffd57b4ce4ad7cb4a5d25a6c32335c /drivers/isdn | |
parent | d462003ddbb28926109396b9038299fc740c2efc (diff) |
isdn: jade: Fix set-but-unused variables.
The variable 'i' is set but unused in JadeVersion(). Just
kill it off.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hisax/jade.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/isdn/hisax/jade.c b/drivers/isdn/hisax/jade.c index ea8f840871d0..a06cea09158b 100644 --- a/drivers/isdn/hisax/jade.c +++ b/drivers/isdn/hisax/jade.c | |||
@@ -23,10 +23,9 @@ | |||
23 | int | 23 | int |
24 | JadeVersion(struct IsdnCardState *cs, char *s) | 24 | JadeVersion(struct IsdnCardState *cs, char *s) |
25 | { | 25 | { |
26 | int ver,i; | 26 | int ver; |
27 | int to = 50; | 27 | int to = 50; |
28 | cs->BC_Write_Reg(cs, -1, 0x50, 0x19); | 28 | cs->BC_Write_Reg(cs, -1, 0x50, 0x19); |
29 | i=0; | ||
30 | while (to) { | 29 | while (to) { |
31 | udelay(1); | 30 | udelay(1); |
32 | ver = cs->BC_Read_Reg(cs, -1, 0x60); | 31 | ver = cs->BC_Read_Reg(cs, -1, 0x60); |