diff options
Diffstat (limited to 'drivers/net/pcmcia/smc91c92_cs.c')
-rw-r--r-- | drivers/net/pcmcia/smc91c92_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pcmcia/smc91c92_cs.c b/drivers/net/pcmcia/smc91c92_cs.c index 918b4a3eca57..c74d6656d266 100644 --- a/drivers/net/pcmcia/smc91c92_cs.c +++ b/drivers/net/pcmcia/smc91c92_cs.c | |||
@@ -415,7 +415,7 @@ static int first_tuple(struct pcmcia_device *handle, tuple_t *tuple, | |||
415 | i = pcmcia_get_tuple_data(handle, tuple); | 415 | i = pcmcia_get_tuple_data(handle, tuple); |
416 | if (i != 0) | 416 | if (i != 0) |
417 | return i; | 417 | return i; |
418 | return pcmcia_parse_tuple(handle, tuple, parse); | 418 | return pcmcia_parse_tuple(tuple, parse); |
419 | } | 419 | } |
420 | 420 | ||
421 | static int next_tuple(struct pcmcia_device *handle, tuple_t *tuple, | 421 | static int next_tuple(struct pcmcia_device *handle, tuple_t *tuple, |
@@ -426,7 +426,7 @@ static int next_tuple(struct pcmcia_device *handle, tuple_t *tuple, | |||
426 | if ((i = pcmcia_get_next_tuple(handle, tuple)) != 0 || | 426 | if ((i = pcmcia_get_next_tuple(handle, tuple)) != 0 || |
427 | (i = pcmcia_get_tuple_data(handle, tuple)) != 0) | 427 | (i = pcmcia_get_tuple_data(handle, tuple)) != 0) |
428 | return i; | 428 | return i; |
429 | return pcmcia_parse_tuple(handle, tuple, parse); | 429 | return pcmcia_parse_tuple(tuple, parse); |
430 | } | 430 | } |
431 | 431 | ||
432 | /*====================================================================== | 432 | /*====================================================================== |