diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-31 09:50:33 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-31 09:50:33 -0400 |
commit | 2f3061eb1086f98990d6495b8c63a1b83f2f59aa (patch) | |
tree | 01066412a16e05f459d405c2130ae98f95090d5f /drivers/char/pcmcia/synclink_cs.c | |
parent | 994917f8b718f1cd7114317cc3cbf04fe46c1841 (diff) |
pcmcia: remove unused argument to pcmcia_parse_tuple()
Since we're just parsing the tuple being passed to this function, we don't
need any device-specific information.
Also, remove the call to pcmcia_validate_cis() from pcmciamtd.c, since it
is already called by the PCMCIA core.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/char/pcmcia/synclink_cs.c')
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index d1fceabe3aef..05bf9c55ecc2 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -604,7 +604,7 @@ static int mgslpc_config(struct pcmcia_device *link) | |||
604 | 604 | ||
605 | cfg = &(parse.cftable_entry); | 605 | cfg = &(parse.cftable_entry); |
606 | CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple)); | 606 | CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple)); |
607 | CS_CHECK(ParseTuple, pcmcia_parse_tuple(link, &tuple, &parse)); | 607 | CS_CHECK(ParseTuple, pcmcia_parse_tuple(&tuple, &parse)); |
608 | 608 | ||
609 | if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg; | 609 | if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg; |
610 | if (cfg->index == 0) | 610 | if (cfg->index == 0) |