diff options
Diffstat (limited to 'drivers/pcmcia/cistpl.c')
-rw-r--r-- | drivers/pcmcia/cistpl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pcmcia/cistpl.c b/drivers/pcmcia/cistpl.c index 772fc96d5ec3..dcce9f5d8465 100644 --- a/drivers/pcmcia/cistpl.c +++ b/drivers/pcmcia/cistpl.c | |||
@@ -1359,7 +1359,7 @@ static int parse_format(tuple_t *tuple, cistpl_format_t *fmt) | |||
1359 | 1359 | ||
1360 | /*====================================================================*/ | 1360 | /*====================================================================*/ |
1361 | 1361 | ||
1362 | int pccard_parse_tuple(tuple_t *tuple, cisparse_t *parse) | 1362 | int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse) |
1363 | { | 1363 | { |
1364 | int ret = 0; | 1364 | int ret = 0; |
1365 | 1365 | ||
@@ -1442,7 +1442,7 @@ int pccard_parse_tuple(tuple_t *tuple, cisparse_t *parse) | |||
1442 | __cs_dbg(0, "parse_tuple failed %d\n", ret); | 1442 | __cs_dbg(0, "parse_tuple failed %d\n", ret); |
1443 | return ret; | 1443 | return ret; |
1444 | } | 1444 | } |
1445 | EXPORT_SYMBOL(pccard_parse_tuple); | 1445 | EXPORT_SYMBOL(pcmcia_parse_tuple); |
1446 | 1446 | ||
1447 | /*====================================================================== | 1447 | /*====================================================================== |
1448 | 1448 | ||
@@ -1472,7 +1472,7 @@ int pccard_read_tuple(struct pcmcia_socket *s, unsigned int function, cisdata_t | |||
1472 | ret = pccard_get_tuple_data(s, &tuple); | 1472 | ret = pccard_get_tuple_data(s, &tuple); |
1473 | if (ret != 0) | 1473 | if (ret != 0) |
1474 | goto done; | 1474 | goto done; |
1475 | ret = pccard_parse_tuple(&tuple, parse); | 1475 | ret = pcmcia_parse_tuple(&tuple, parse); |
1476 | done: | 1476 | done: |
1477 | kfree(buf); | 1477 | kfree(buf); |
1478 | return ret; | 1478 | return ret; |