aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pcmcia
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2009-10-18 12:22:32 -0400
committerDominik Brodowski <linux@dominikbrodowski.net>2009-11-08 12:06:32 -0500
commit7d2e8d00b47b973c92db4df7444d5e6d3bb945f9 (patch)
tree22286fa095d0340245e83ca9c7695f42f65c141a /drivers/net/pcmcia
parent6ae3b84d979308671bf6f6a2123c258a8603d61c (diff)
pcmcia: use pre-determined values
A few PCMCIA network drivers can make use of values provided by the pcmcia core, instead of tedious, independent CIS parsing. xirc32ps_cs.c: manf_id hostap_cs.c: multifunction count b43/pcmcia.c: ConfigBase address and "Present" smc91c92_cs.c: By default, mhz_setup() can use VERS_1 as it is stored in struct pcmcia_device. Only some cards require workarounds, such as reading out VERS_1 twice. CC: David S. Miller <davem@davemloft.net> CC: netdev@vger.kernel.org CC: linux-wireless@vger.kernel.org Acked-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/net/pcmcia')
-rw-r--r--drivers/net/pcmcia/smc91c92_cs.c11
-rw-r--r--drivers/net/pcmcia/xirc2ps_cs.c12
2 files changed, 18 insertions, 5 deletions
diff --git a/drivers/net/pcmcia/smc91c92_cs.c b/drivers/net/pcmcia/smc91c92_cs.c
index 7bde2cd34c7e..af03759d186d 100644
--- a/drivers/net/pcmcia/smc91c92_cs.c
+++ b/drivers/net/pcmcia/smc91c92_cs.c
@@ -545,6 +545,14 @@ static int mhz_setup(struct pcmcia_device *link)
545 u_char *buf, *station_addr; 545 u_char *buf, *station_addr;
546 int rc; 546 int rc;
547 547
548 /* Read the station address from the CIS. It is stored as the last
549 (fourth) string in the Version 1 Version/ID tuple. */
550 if ((link->prod_id[3]) &&
551 (cvt_ascii_address(dev, link->prod_id[3]) == 0))
552 return 0;
553
554 /* Workarounds for broken cards start here. */
555
548 cfg_mem = kmalloc(sizeof(struct smc_cfg_mem), GFP_KERNEL); 556 cfg_mem = kmalloc(sizeof(struct smc_cfg_mem), GFP_KERNEL);
549 if (!cfg_mem) 557 if (!cfg_mem)
550 return -1; 558 return -1;
@@ -557,8 +565,7 @@ static int mhz_setup(struct pcmcia_device *link)
557 tuple->TupleData = (cisdata_t *)buf; 565 tuple->TupleData = (cisdata_t *)buf;
558 tuple->TupleDataMax = 255; 566 tuple->TupleDataMax = 255;
559 567
560 /* Read the station address from the CIS. It is stored as the last 568 /* Ugh -- the EM1144 card has two VERS_1 tuples!?! */
561 (fourth) string in the Version 1 Version/ID tuple. */
562 tuple->DesiredTuple = CISTPL_VERS_1; 569 tuple->DesiredTuple = CISTPL_VERS_1;
563 if (first_tuple(link, tuple, parse) != 0) { 570 if (first_tuple(link, tuple, parse) != 0) {
564 rc = -1; 571 rc = -1;
diff --git a/drivers/net/pcmcia/xirc2ps_cs.c b/drivers/net/pcmcia/xirc2ps_cs.c
index cf8423102538..5e203230144f 100644
--- a/drivers/net/pcmcia/xirc2ps_cs.c
+++ b/drivers/net/pcmcia/xirc2ps_cs.c
@@ -792,13 +792,12 @@ xirc2ps_config(struct pcmcia_device * link)
792 tuple.TupleOffset = 0; 792 tuple.TupleOffset = 0;
793 793
794 /* Is this a valid card */ 794 /* Is this a valid card */
795 tuple.DesiredTuple = CISTPL_MANFID; 795 if (link->has_manf_id == 0) {
796 if ((err=first_tuple(link, &tuple, &parse))) {
797 printk(KNOT_XIRC "manfid not found in CIS\n"); 796 printk(KNOT_XIRC "manfid not found in CIS\n");
798 goto failure; 797 goto failure;
799 } 798 }
800 799
801 switch(parse.manfid.manf) { 800 switch (link->manf_id) {
802 case MANFID_XIRCOM: 801 case MANFID_XIRCOM:
803 local->manf_str = "Xircom"; 802 local->manf_str = "Xircom";
804 break; 803 break;
@@ -822,6 +821,13 @@ xirc2ps_config(struct pcmcia_device * link)
822 } 821 }
823 DEBUG(0, "found %s card\n", local->manf_str); 822 DEBUG(0, "found %s card\n", local->manf_str);
824 823
824 /* needed for the additional fields to be parsed by set_card_type() */
825 tuple.DesiredTuple = CISTPL_MANFID;
826 err = first_tuple(link, &tuple, &parse)
827 if (err) {
828 printk(KNOT_XIRC "manfid not found in CIS\n");
829 goto failure;
830 }
825 if (!set_card_type(link, buf)) { 831 if (!set_card_type(link, buf)) {
826 printk(KNOT_XIRC "this card is not supported\n"); 832 printk(KNOT_XIRC "this card is not supported\n");
827 goto failure; 833 goto failure;