diff options
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/pcmcia/3c574_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/3c589_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/axnet_cs.c | 5 | ||||
-rw-r--r-- | drivers/net/pcmcia/com20020_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/fmvj18x_cs.c | 8 | ||||
-rw-r--r-- | drivers/net/pcmcia/ibmtr_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/nmclan_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/pcnet_cs.c | 5 | ||||
-rw-r--r-- | drivers/net/pcmcia/smc91c92_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/pcmcia/xirc2ps_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/wireless/airo_cs.c | 19 | ||||
-rw-r--r-- | drivers/net/wireless/atmel_cs.c | 10 | ||||
-rw-r--r-- | drivers/net/wireless/hostap/hostap_cs.c | 19 | ||||
-rw-r--r-- | drivers/net/wireless/netwave_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/wireless/orinoco_cs.c | 18 | ||||
-rw-r--r-- | drivers/net/wireless/ray_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/wireless/spectrum_cs.c | 16 | ||||
-rw-r--r-- | drivers/net/wireless/wavelan_cs.c | 1 | ||||
-rw-r--r-- | drivers/net/wireless/wl3501_cs.c | 1 |
19 files changed, 31 insertions, 80 deletions
diff --git a/drivers/net/pcmcia/3c574_cs.c b/drivers/net/pcmcia/3c574_cs.c index 8dfa30b3c70a..179c9b7ad044 100644 --- a/drivers/net/pcmcia/3c574_cs.c +++ b/drivers/net/pcmcia/3c574_cs.c | |||
@@ -280,7 +280,6 @@ static int tc574_attach(struct pcmcia_device *p_dev) | |||
280 | link->irq.Handler = &el3_interrupt; | 280 | link->irq.Handler = &el3_interrupt; |
281 | link->irq.Instance = dev; | 281 | link->irq.Instance = dev; |
282 | link->conf.Attributes = CONF_ENABLE_IRQ; | 282 | link->conf.Attributes = CONF_ENABLE_IRQ; |
283 | link->conf.Vcc = 50; | ||
284 | link->conf.IntType = INT_MEMORY_AND_IO; | 283 | link->conf.IntType = INT_MEMORY_AND_IO; |
285 | link->conf.ConfigIndex = 1; | 284 | link->conf.ConfigIndex = 1; |
286 | link->conf.Present = PRESENT_OPTION; | 285 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/pcmcia/3c589_cs.c b/drivers/net/pcmcia/3c589_cs.c index b15066be26f8..7e8036f2e19e 100644 --- a/drivers/net/pcmcia/3c589_cs.c +++ b/drivers/net/pcmcia/3c589_cs.c | |||
@@ -194,7 +194,6 @@ static int tc589_attach(struct pcmcia_device *p_dev) | |||
194 | link->irq.Handler = &el3_interrupt; | 194 | link->irq.Handler = &el3_interrupt; |
195 | link->irq.Instance = dev; | 195 | link->irq.Instance = dev; |
196 | link->conf.Attributes = CONF_ENABLE_IRQ; | 196 | link->conf.Attributes = CONF_ENABLE_IRQ; |
197 | link->conf.Vcc = 50; | ||
198 | link->conf.IntType = INT_MEMORY_AND_IO; | 197 | link->conf.IntType = INT_MEMORY_AND_IO; |
199 | link->conf.ConfigIndex = 1; | 198 | link->conf.ConfigIndex = 1; |
200 | link->conf.Present = PRESENT_OPTION; | 199 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/pcmcia/axnet_cs.c b/drivers/net/pcmcia/axnet_cs.c index c34547c79245..5ca0d5718583 100644 --- a/drivers/net/pcmcia/axnet_cs.c +++ b/drivers/net/pcmcia/axnet_cs.c | |||
@@ -302,7 +302,6 @@ static void axnet_config(dev_link_t *link) | |||
302 | cisparse_t parse; | 302 | cisparse_t parse; |
303 | int i, j, last_ret, last_fn; | 303 | int i, j, last_ret, last_fn; |
304 | u_short buf[64]; | 304 | u_short buf[64]; |
305 | config_info_t conf; | ||
306 | 305 | ||
307 | DEBUG(0, "axnet_config(0x%p)\n", link); | 306 | DEBUG(0, "axnet_config(0x%p)\n", link); |
308 | 307 | ||
@@ -321,10 +320,6 @@ static void axnet_config(dev_link_t *link) | |||
321 | /* Configure card */ | 320 | /* Configure card */ |
322 | link->state |= DEV_CONFIG; | 321 | link->state |= DEV_CONFIG; |
323 | 322 | ||
324 | /* Look up current Vcc */ | ||
325 | CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf)); | ||
326 | link->conf.Vcc = conf.Vcc; | ||
327 | |||
328 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; | 323 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; |
329 | tuple.Attributes = 0; | 324 | tuple.Attributes = 0; |
330 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple)); | 325 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple)); |
diff --git a/drivers/net/pcmcia/com20020_cs.c b/drivers/net/pcmcia/com20020_cs.c index 0748c3d49544..e14d3d18b97d 100644 --- a/drivers/net/pcmcia/com20020_cs.c +++ b/drivers/net/pcmcia/com20020_cs.c | |||
@@ -178,7 +178,6 @@ static int com20020_attach(struct pcmcia_device *p_dev) | |||
178 | link->irq.Attributes = IRQ_TYPE_EXCLUSIVE; | 178 | link->irq.Attributes = IRQ_TYPE_EXCLUSIVE; |
179 | link->irq.IRQInfo1 = IRQ_LEVEL_ID; | 179 | link->irq.IRQInfo1 = IRQ_LEVEL_ID; |
180 | link->conf.Attributes = CONF_ENABLE_IRQ; | 180 | link->conf.Attributes = CONF_ENABLE_IRQ; |
181 | link->conf.Vcc = 50; | ||
182 | link->conf.IntType = INT_MEMORY_AND_IO; | 181 | link->conf.IntType = INT_MEMORY_AND_IO; |
183 | link->conf.Present = PRESENT_OPTION; | 182 | link->conf.Present = PRESENT_OPTION; |
184 | 183 | ||
diff --git a/drivers/net/pcmcia/fmvj18x_cs.c b/drivers/net/pcmcia/fmvj18x_cs.c index 62efbc7c2dca..34bf963b1296 100644 --- a/drivers/net/pcmcia/fmvj18x_cs.c +++ b/drivers/net/pcmcia/fmvj18x_cs.c | |||
@@ -257,7 +257,6 @@ static int fmvj18x_attach(struct pcmcia_device *p_dev) | |||
257 | 257 | ||
258 | /* General socket configuration */ | 258 | /* General socket configuration */ |
259 | link->conf.Attributes = CONF_ENABLE_IRQ; | 259 | link->conf.Attributes = CONF_ENABLE_IRQ; |
260 | link->conf.Vcc = 50; | ||
261 | link->conf.IntType = INT_MEMORY_AND_IO; | 260 | link->conf.IntType = INT_MEMORY_AND_IO; |
262 | 261 | ||
263 | /* The FMVJ18x specific entries in the device structure. */ | 262 | /* The FMVJ18x specific entries in the device structure. */ |
@@ -396,12 +395,7 @@ static void fmvj18x_config(dev_link_t *link) | |||
396 | switch (le16_to_cpu(buf[0])) { | 395 | switch (le16_to_cpu(buf[0])) { |
397 | case MANFID_TDK: | 396 | case MANFID_TDK: |
398 | cardtype = TDK; | 397 | cardtype = TDK; |
399 | if (le16_to_cpu(buf[1]) == PRODID_TDK_CF010) { | 398 | if (le16_to_cpu(buf[1]) == PRODID_TDK_GN3410 |
400 | cs_status_t status; | ||
401 | pcmcia_get_status(handle, &status); | ||
402 | if (status.CardState & CS_EVENT_3VCARD) | ||
403 | link->conf.Vcc = 33; /* inserted in 3.3V slot */ | ||
404 | } else if (le16_to_cpu(buf[1]) == PRODID_TDK_GN3410 | ||
405 | || le16_to_cpu(buf[1]) == PRODID_TDK_NP9610 | 399 | || le16_to_cpu(buf[1]) == PRODID_TDK_NP9610 |
406 | || le16_to_cpu(buf[1]) == PRODID_TDK_MN3200) { | 400 | || le16_to_cpu(buf[1]) == PRODID_TDK_MN3200) { |
407 | /* MultiFunction Card */ | 401 | /* MultiFunction Card */ |
diff --git a/drivers/net/pcmcia/ibmtr_cs.c b/drivers/net/pcmcia/ibmtr_cs.c index 6d7f8f52e175..904c5cb04e71 100644 --- a/drivers/net/pcmcia/ibmtr_cs.c +++ b/drivers/net/pcmcia/ibmtr_cs.c | |||
@@ -167,7 +167,6 @@ static int ibmtr_attach(struct pcmcia_device *p_dev) | |||
167 | link->irq.IRQInfo1 = IRQ_LEVEL_ID; | 167 | link->irq.IRQInfo1 = IRQ_LEVEL_ID; |
168 | link->irq.Handler = &tok_interrupt; | 168 | link->irq.Handler = &tok_interrupt; |
169 | link->conf.Attributes = CONF_ENABLE_IRQ; | 169 | link->conf.Attributes = CONF_ENABLE_IRQ; |
170 | link->conf.Vcc = 50; | ||
171 | link->conf.IntType = INT_MEMORY_AND_IO; | 170 | link->conf.IntType = INT_MEMORY_AND_IO; |
172 | link->conf.Present = PRESENT_OPTION; | 171 | link->conf.Present = PRESENT_OPTION; |
173 | 172 | ||
diff --git a/drivers/net/pcmcia/nmclan_cs.c b/drivers/net/pcmcia/nmclan_cs.c index cf2a50c015da..c25d9451d574 100644 --- a/drivers/net/pcmcia/nmclan_cs.c +++ b/drivers/net/pcmcia/nmclan_cs.c | |||
@@ -469,7 +469,6 @@ static int nmclan_attach(struct pcmcia_device *p_dev) | |||
469 | link->irq.Handler = &mace_interrupt; | 469 | link->irq.Handler = &mace_interrupt; |
470 | link->irq.Instance = dev; | 470 | link->irq.Instance = dev; |
471 | link->conf.Attributes = CONF_ENABLE_IRQ; | 471 | link->conf.Attributes = CONF_ENABLE_IRQ; |
472 | link->conf.Vcc = 50; | ||
473 | link->conf.IntType = INT_MEMORY_AND_IO; | 472 | link->conf.IntType = INT_MEMORY_AND_IO; |
474 | link->conf.ConfigIndex = 1; | 473 | link->conf.ConfigIndex = 1; |
475 | link->conf.Present = PRESENT_OPTION; | 474 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/pcmcia/pcnet_cs.c b/drivers/net/pcmcia/pcnet_cs.c index 3a2b731eeb3c..5a7e58af0b3b 100644 --- a/drivers/net/pcmcia/pcnet_cs.c +++ b/drivers/net/pcmcia/pcnet_cs.c | |||
@@ -531,7 +531,6 @@ static void pcnet_config(dev_link_t *link) | |||
531 | int i, last_ret, last_fn, start_pg, stop_pg, cm_offset; | 531 | int i, last_ret, last_fn, start_pg, stop_pg, cm_offset; |
532 | int manfid = 0, prodid = 0, has_shmem = 0; | 532 | int manfid = 0, prodid = 0, has_shmem = 0; |
533 | u_short buf[64]; | 533 | u_short buf[64]; |
534 | config_info_t conf; | ||
535 | hw_info_t *hw_info; | 534 | hw_info_t *hw_info; |
536 | 535 | ||
537 | DEBUG(0, "pcnet_config(0x%p)\n", link); | 536 | DEBUG(0, "pcnet_config(0x%p)\n", link); |
@@ -550,10 +549,6 @@ static void pcnet_config(dev_link_t *link) | |||
550 | /* Configure card */ | 549 | /* Configure card */ |
551 | link->state |= DEV_CONFIG; | 550 | link->state |= DEV_CONFIG; |
552 | 551 | ||
553 | /* Look up current Vcc */ | ||
554 | CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf)); | ||
555 | link->conf.Vcc = conf.Vcc; | ||
556 | |||
557 | tuple.DesiredTuple = CISTPL_MANFID; | 552 | tuple.DesiredTuple = CISTPL_MANFID; |
558 | tuple.Attributes = TUPLE_RETURN_COMMON; | 553 | tuple.Attributes = TUPLE_RETURN_COMMON; |
559 | if ((pcmcia_get_first_tuple(handle, &tuple) == CS_SUCCESS) && | 554 | if ((pcmcia_get_first_tuple(handle, &tuple) == CS_SUCCESS) && |
diff --git a/drivers/net/pcmcia/smc91c92_cs.c b/drivers/net/pcmcia/smc91c92_cs.c index 86942c09d8da..b46b7e148390 100644 --- a/drivers/net/pcmcia/smc91c92_cs.c +++ b/drivers/net/pcmcia/smc91c92_cs.c | |||
@@ -334,7 +334,6 @@ static int smc91c92_attach(struct pcmcia_device *p_dev) | |||
334 | link->irq.Handler = &smc_interrupt; | 334 | link->irq.Handler = &smc_interrupt; |
335 | link->irq.Instance = dev; | 335 | link->irq.Instance = dev; |
336 | link->conf.Attributes = CONF_ENABLE_IRQ; | 336 | link->conf.Attributes = CONF_ENABLE_IRQ; |
337 | link->conf.Vcc = 50; | ||
338 | link->conf.IntType = INT_MEMORY_AND_IO; | 337 | link->conf.IntType = INT_MEMORY_AND_IO; |
339 | 338 | ||
340 | /* The SMC91c92-specific entries in the device structure. */ | 339 | /* The SMC91c92-specific entries in the device structure. */ |
diff --git a/drivers/net/pcmcia/xirc2ps_cs.c b/drivers/net/pcmcia/xirc2ps_cs.c index 19347bcb2f15..f5fa86d046d4 100644 --- a/drivers/net/pcmcia/xirc2ps_cs.c +++ b/drivers/net/pcmcia/xirc2ps_cs.c | |||
@@ -571,7 +571,6 @@ xirc2ps_attach(struct pcmcia_device *p_dev) | |||
571 | 571 | ||
572 | /* General socket configuration */ | 572 | /* General socket configuration */ |
573 | link->conf.Attributes = CONF_ENABLE_IRQ; | 573 | link->conf.Attributes = CONF_ENABLE_IRQ; |
574 | link->conf.Vcc = 50; | ||
575 | link->conf.IntType = INT_MEMORY_AND_IO; | 574 | link->conf.IntType = INT_MEMORY_AND_IO; |
576 | link->conf.ConfigIndex = 1; | 575 | link->conf.ConfigIndex = 1; |
577 | link->conf.Present = PRESENT_OPTION; | 576 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/wireless/airo_cs.c b/drivers/net/wireless/airo_cs.c index adb90b679d7d..2216c04a02af 100644 --- a/drivers/net/wireless/airo_cs.c +++ b/drivers/net/wireless/airo_cs.c | |||
@@ -168,7 +168,6 @@ static int airo_attach(struct pcmcia_device *p_dev) | |||
168 | device, and can be hard-wired here. | 168 | device, and can be hard-wired here. |
169 | */ | 169 | */ |
170 | link->conf.Attributes = 0; | 170 | link->conf.Attributes = 0; |
171 | link->conf.Vcc = 50; | ||
172 | link->conf.IntType = INT_MEMORY_AND_IO; | 171 | link->conf.IntType = INT_MEMORY_AND_IO; |
173 | 172 | ||
174 | /* Allocate space for private device-specific data */ | 173 | /* Allocate space for private device-specific data */ |
@@ -294,16 +293,11 @@ static void airo_config(dev_link_t *link) | |||
294 | 293 | ||
295 | /* Use power settings for Vcc and Vpp if present */ | 294 | /* Use power settings for Vcc and Vpp if present */ |
296 | /* Note that the CIS values need to be rescaled */ | 295 | /* Note that the CIS values need to be rescaled */ |
297 | if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM)) | ||
298 | link->conf.Vcc = cfg->vcc.param[CISTPL_POWER_VNOM]/10000; | ||
299 | else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM)) | ||
300 | link->conf.Vcc = dflt.vcc.param[CISTPL_POWER_VNOM]/10000; | ||
301 | |||
302 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 296 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
303 | link->conf.Vpp1 = link->conf.Vpp2 = | 297 | link->conf.Vpp = |
304 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; | 298 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; |
305 | else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM)) | 299 | else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM)) |
306 | link->conf.Vpp1 = link->conf.Vpp2 = | 300 | link->conf.Vpp = |
307 | dflt.vpp1.param[CISTPL_POWER_VNOM]/10000; | 301 | dflt.vpp1.param[CISTPL_POWER_VNOM]/10000; |
308 | 302 | ||
309 | /* Do we need to allocate an interrupt? */ | 303 | /* Do we need to allocate an interrupt? */ |
@@ -391,11 +385,10 @@ static void airo_config(dev_link_t *link) | |||
391 | link->dev = &dev->node; | 385 | link->dev = &dev->node; |
392 | 386 | ||
393 | /* Finally, report what we've done */ | 387 | /* Finally, report what we've done */ |
394 | printk(KERN_INFO "%s: index 0x%02x: Vcc %d.%d", | 388 | printk(KERN_INFO "%s: index 0x%02x: ", |
395 | dev->node.dev_name, link->conf.ConfigIndex, | 389 | dev->node.dev_name, link->conf.ConfigIndex); |
396 | link->conf.Vcc/10, link->conf.Vcc%10); | 390 | if (link->conf.Vpp) |
397 | if (link->conf.Vpp1) | 391 | printk(", Vpp %d.%d", link->conf.Vpp/10, link->conf.Vpp%10); |
398 | printk(", Vpp %d.%d", link->conf.Vpp1/10, link->conf.Vpp1%10); | ||
399 | if (link->conf.Attributes & CONF_ENABLE_IRQ) | 392 | if (link->conf.Attributes & CONF_ENABLE_IRQ) |
400 | printk(", irq %d", link->irq.AssignedIRQ); | 393 | printk(", irq %d", link->irq.AssignedIRQ); |
401 | if (link->io.NumPorts1) | 394 | if (link->io.NumPorts1) |
diff --git a/drivers/net/wireless/atmel_cs.c b/drivers/net/wireless/atmel_cs.c index 89dbc783ff80..53fdaa22226d 100644 --- a/drivers/net/wireless/atmel_cs.c +++ b/drivers/net/wireless/atmel_cs.c | |||
@@ -179,7 +179,6 @@ static int atmel_attach(struct pcmcia_device *p_dev) | |||
179 | device, and can be hard-wired here. | 179 | device, and can be hard-wired here. |
180 | */ | 180 | */ |
181 | link->conf.Attributes = 0; | 181 | link->conf.Attributes = 0; |
182 | link->conf.Vcc = 50; | ||
183 | link->conf.IntType = INT_MEMORY_AND_IO; | 182 | link->conf.IntType = INT_MEMORY_AND_IO; |
184 | 183 | ||
185 | /* Allocate space for private device-specific data */ | 184 | /* Allocate space for private device-specific data */ |
@@ -314,16 +313,11 @@ static void atmel_config(dev_link_t *link) | |||
314 | 313 | ||
315 | /* Use power settings for Vcc and Vpp if present */ | 314 | /* Use power settings for Vcc and Vpp if present */ |
316 | /* Note that the CIS values need to be rescaled */ | 315 | /* Note that the CIS values need to be rescaled */ |
317 | if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM)) | ||
318 | link->conf.Vcc = cfg->vcc.param[CISTPL_POWER_VNOM]/10000; | ||
319 | else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM)) | ||
320 | link->conf.Vcc = dflt.vcc.param[CISTPL_POWER_VNOM]/10000; | ||
321 | |||
322 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 316 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
323 | link->conf.Vpp1 = link->conf.Vpp2 = | 317 | link->conf.Vpp = |
324 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; | 318 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; |
325 | else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM)) | 319 | else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM)) |
326 | link->conf.Vpp1 = link->conf.Vpp2 = | 320 | link->conf.Vpp = |
327 | dflt.vpp1.param[CISTPL_POWER_VNOM]/10000; | 321 | dflt.vpp1.param[CISTPL_POWER_VNOM]/10000; |
328 | 322 | ||
329 | /* Do we need to allocate an interrupt? */ | 323 | /* Do we need to allocate an interrupt? */ |
diff --git a/drivers/net/wireless/hostap/hostap_cs.c b/drivers/net/wireless/hostap/hostap_cs.c index 0fb625185452..69024bfb5bba 100644 --- a/drivers/net/wireless/hostap/hostap_cs.c +++ b/drivers/net/wireless/hostap/hostap_cs.c | |||
@@ -512,7 +512,6 @@ static int prism2_attach(struct pcmcia_device *p_dev) | |||
512 | memset(link, 0, sizeof(dev_link_t)); | 512 | memset(link, 0, sizeof(dev_link_t)); |
513 | 513 | ||
514 | PDEBUG(DEBUG_HW, "%s: setting Vcc=33 (constant)\n", dev_info); | 514 | PDEBUG(DEBUG_HW, "%s: setting Vcc=33 (constant)\n", dev_info); |
515 | link->conf.Vcc = 33; | ||
516 | link->conf.IntType = INT_MEMORY_AND_IO; | 515 | link->conf.IntType = INT_MEMORY_AND_IO; |
517 | 516 | ||
518 | link->handle = p_dev; | 517 | link->handle = p_dev; |
@@ -603,9 +602,6 @@ static int prism2_config(dev_link_t *link) | |||
603 | 602 | ||
604 | CS_CHECK(GetConfigurationInfo, | 603 | CS_CHECK(GetConfigurationInfo, |
605 | pcmcia_get_configuration_info(link->handle, &conf)); | 604 | pcmcia_get_configuration_info(link->handle, &conf)); |
606 | PDEBUG(DEBUG_HW, "%s: %s Vcc=%d (from config)\n", dev_info, | ||
607 | ignore_cis_vcc ? "ignoring" : "setting", conf.Vcc); | ||
608 | link->conf.Vcc = conf.Vcc; | ||
609 | 605 | ||
610 | /* Look for an appropriate configuration table entry in the CIS */ | 606 | /* Look for an appropriate configuration table entry in the CIS */ |
611 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; | 607 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; |
@@ -650,10 +646,10 @@ static int prism2_config(dev_link_t *link) | |||
650 | } | 646 | } |
651 | 647 | ||
652 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) | 648 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) |
653 | link->conf.Vpp1 = link->conf.Vpp2 = | 649 | link->conf.Vpp = |
654 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; | 650 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
655 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) | 651 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) |
656 | link->conf.Vpp1 = link->conf.Vpp2 = | 652 | link->conf.Vpp = |
657 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; | 653 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; |
658 | 654 | ||
659 | /* Do we need to allocate an interrupt? */ | 655 | /* Do we need to allocate an interrupt? */ |
@@ -745,12 +741,11 @@ static int prism2_config(dev_link_t *link) | |||
745 | dev->base_addr = link->io.BasePort1; | 741 | dev->base_addr = link->io.BasePort1; |
746 | 742 | ||
747 | /* Finally, report what we've done */ | 743 | /* Finally, report what we've done */ |
748 | printk(KERN_INFO "%s: index 0x%02x: Vcc %d.%d", | 744 | printk(KERN_INFO "%s: index 0x%02x: ", |
749 | dev_info, link->conf.ConfigIndex, | 745 | dev_info, link->conf.ConfigIndex); |
750 | link->conf.Vcc / 10, link->conf.Vcc % 10); | 746 | if (link->conf.Vpp) |
751 | if (link->conf.Vpp1) | 747 | printk(", Vpp %d.%d", link->conf.Vpp / 10, |
752 | printk(", Vpp %d.%d", link->conf.Vpp1 / 10, | 748 | link->conf.Vpp % 10); |
753 | link->conf.Vpp1 % 10); | ||
754 | if (link->conf.Attributes & CONF_ENABLE_IRQ) | 749 | if (link->conf.Attributes & CONF_ENABLE_IRQ) |
755 | printk(", irq %d", link->irq.AssignedIRQ); | 750 | printk(", irq %d", link->irq.AssignedIRQ); |
756 | if (link->io.NumPorts1) | 751 | if (link->io.NumPorts1) |
diff --git a/drivers/net/wireless/netwave_cs.c b/drivers/net/wireless/netwave_cs.c index 545717b5e1e5..23d6b3376e6e 100644 --- a/drivers/net/wireless/netwave_cs.c +++ b/drivers/net/wireless/netwave_cs.c | |||
@@ -406,7 +406,6 @@ static int netwave_attach(struct pcmcia_device *p_dev) | |||
406 | 406 | ||
407 | /* General socket configuration */ | 407 | /* General socket configuration */ |
408 | link->conf.Attributes = CONF_ENABLE_IRQ; | 408 | link->conf.Attributes = CONF_ENABLE_IRQ; |
409 | link->conf.Vcc = 50; | ||
410 | link->conf.IntType = INT_MEMORY_AND_IO; | 409 | link->conf.IntType = INT_MEMORY_AND_IO; |
411 | link->conf.ConfigIndex = 1; | 410 | link->conf.ConfigIndex = 1; |
412 | link->conf.Present = PRESENT_OPTION; | 411 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/wireless/orinoco_cs.c b/drivers/net/wireless/orinoco_cs.c index 89e16cd1be8c..75981d88a1e2 100644 --- a/drivers/net/wireless/orinoco_cs.c +++ b/drivers/net/wireless/orinoco_cs.c | |||
@@ -218,8 +218,7 @@ orinoco_cs_config(dev_link_t *link) | |||
218 | 218 | ||
219 | /* Look up the current Vcc */ | 219 | /* Look up the current Vcc */ |
220 | CS_CHECK(GetConfigurationInfo, | 220 | CS_CHECK(GetConfigurationInfo, |
221 | pcmcia_get_configuration_info(handle, &conf)); | 221 | pcmcia_get_configuration_info(link->handle, &conf)); |
222 | link->conf.Vcc = conf.Vcc; | ||
223 | 222 | ||
224 | /* | 223 | /* |
225 | * In this loop, we scan the CIS for configuration table | 224 | * In this loop, we scan the CIS for configuration table |
@@ -274,10 +273,10 @@ orinoco_cs_config(dev_link_t *link) | |||
274 | } | 273 | } |
275 | 274 | ||
276 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) | 275 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) |
277 | link->conf.Vpp1 = link->conf.Vpp2 = | 276 | link->conf.Vpp = |
278 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; | 277 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
279 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) | 278 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) |
280 | link->conf.Vpp1 = link->conf.Vpp2 = | 279 | link->conf.Vpp = |
281 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; | 280 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; |
282 | 281 | ||
283 | /* Do we need to allocate an interrupt? */ | 282 | /* Do we need to allocate an interrupt? */ |
@@ -373,12 +372,11 @@ orinoco_cs_config(dev_link_t *link) | |||
373 | link->state &= ~DEV_CONFIG_PENDING; | 372 | link->state &= ~DEV_CONFIG_PENDING; |
374 | 373 | ||
375 | /* Finally, report what we've done */ | 374 | /* Finally, report what we've done */ |
376 | printk(KERN_DEBUG "%s: index 0x%02x: Vcc %d.%d", | 375 | printk(KERN_DEBUG "%s: index 0x%02x: ", |
377 | dev->name, link->conf.ConfigIndex, | 376 | dev->name, link->conf.ConfigIndex); |
378 | link->conf.Vcc / 10, link->conf.Vcc % 10); | 377 | if (link->conf.Vpp) |
379 | if (link->conf.Vpp1) | 378 | printk(", Vpp %d.%d", link->conf.Vpp / 10, |
380 | printk(", Vpp %d.%d", link->conf.Vpp1 / 10, | 379 | link->conf.Vpp % 10); |
381 | link->conf.Vpp1 % 10); | ||
382 | printk(", irq %d", link->irq.AssignedIRQ); | 380 | printk(", irq %d", link->irq.AssignedIRQ); |
383 | if (link->io.NumPorts1) | 381 | if (link->io.NumPorts1) |
384 | printk(", io 0x%04x-0x%04x", link->io.BasePort1, | 382 | printk(", io 0x%04x-0x%04x", link->io.BasePort1, |
diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c index ed4bf5013f1a..7d95587d09db 100644 --- a/drivers/net/wireless/ray_cs.c +++ b/drivers/net/wireless/ray_cs.c | |||
@@ -342,7 +342,6 @@ static int ray_attach(struct pcmcia_device *p_dev) | |||
342 | 342 | ||
343 | /* General socket configuration */ | 343 | /* General socket configuration */ |
344 | link->conf.Attributes = CONF_ENABLE_IRQ; | 344 | link->conf.Attributes = CONF_ENABLE_IRQ; |
345 | link->conf.Vcc = 50; | ||
346 | link->conf.IntType = INT_MEMORY_AND_IO; | 345 | link->conf.IntType = INT_MEMORY_AND_IO; |
347 | link->conf.ConfigIndex = 1; | 346 | link->conf.ConfigIndex = 1; |
348 | link->conf.Present = PRESENT_OPTION; | 347 | link->conf.Present = PRESENT_OPTION; |
diff --git a/drivers/net/wireless/spectrum_cs.c b/drivers/net/wireless/spectrum_cs.c index 0429f1dc7fad..7a4a80b01f9c 100644 --- a/drivers/net/wireless/spectrum_cs.c +++ b/drivers/net/wireless/spectrum_cs.c | |||
@@ -692,7 +692,6 @@ spectrum_cs_config(dev_link_t *link) | |||
692 | /* Look up the current Vcc */ | 692 | /* Look up the current Vcc */ |
693 | CS_CHECK(GetConfigurationInfo, | 693 | CS_CHECK(GetConfigurationInfo, |
694 | pcmcia_get_configuration_info(handle, &conf)); | 694 | pcmcia_get_configuration_info(handle, &conf)); |
695 | link->conf.Vcc = conf.Vcc; | ||
696 | 695 | ||
697 | /* | 696 | /* |
698 | * In this loop, we scan the CIS for configuration table | 697 | * In this loop, we scan the CIS for configuration table |
@@ -747,10 +746,10 @@ spectrum_cs_config(dev_link_t *link) | |||
747 | } | 746 | } |
748 | 747 | ||
749 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) | 748 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) |
750 | link->conf.Vpp1 = link->conf.Vpp2 = | 749 | link->conf.Vpp = |
751 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; | 750 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
752 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) | 751 | else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) |
753 | link->conf.Vpp1 = link->conf.Vpp2 = | 752 | link->conf.Vpp = |
754 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; | 753 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; |
755 | 754 | ||
756 | /* Do we need to allocate an interrupt? */ | 755 | /* Do we need to allocate an interrupt? */ |
@@ -851,12 +850,11 @@ spectrum_cs_config(dev_link_t *link) | |||
851 | link->state &= ~DEV_CONFIG_PENDING; | 850 | link->state &= ~DEV_CONFIG_PENDING; |
852 | 851 | ||
853 | /* Finally, report what we've done */ | 852 | /* Finally, report what we've done */ |
854 | printk(KERN_DEBUG "%s: index 0x%02x: Vcc %d.%d", | 853 | printk(KERN_DEBUG "%s: index 0x%02x: ", |
855 | dev->name, link->conf.ConfigIndex, | 854 | dev->name, link->conf.ConfigIndex); |
856 | link->conf.Vcc / 10, link->conf.Vcc % 10); | 855 | if (link->conf.Vpp) |
857 | if (link->conf.Vpp1) | 856 | printk(", Vpp %d.%d", link->conf.Vpp / 10, |
858 | printk(", Vpp %d.%d", link->conf.Vpp1 / 10, | 857 | link->conf.Vpp % 10); |
859 | link->conf.Vpp1 % 10); | ||
860 | printk(", irq %d", link->irq.AssignedIRQ); | 858 | printk(", irq %d", link->irq.AssignedIRQ); |
861 | if (link->io.NumPorts1) | 859 | if (link->io.NumPorts1) |
862 | printk(", io 0x%04x-0x%04x", link->io.BasePort1, | 860 | printk(", io 0x%04x-0x%04x", link->io.BasePort1, |
diff --git a/drivers/net/wireless/wavelan_cs.c b/drivers/net/wireless/wavelan_cs.c index 8cabcfe3a654..daa17dc34320 100644 --- a/drivers/net/wireless/wavelan_cs.c +++ b/drivers/net/wireless/wavelan_cs.c | |||
@@ -4607,7 +4607,6 @@ wavelan_attach(struct pcmcia_device *p_dev) | |||
4607 | 4607 | ||
4608 | /* General socket configuration */ | 4608 | /* General socket configuration */ |
4609 | link->conf.Attributes = CONF_ENABLE_IRQ; | 4609 | link->conf.Attributes = CONF_ENABLE_IRQ; |
4610 | link->conf.Vcc = 50; | ||
4611 | link->conf.IntType = INT_MEMORY_AND_IO; | 4610 | link->conf.IntType = INT_MEMORY_AND_IO; |
4612 | 4611 | ||
4613 | /* Chain drivers */ | 4612 | /* Chain drivers */ |
diff --git a/drivers/net/wireless/wl3501_cs.c b/drivers/net/wireless/wl3501_cs.c index 3a93a8bb2e1f..393b5cb7a52c 100644 --- a/drivers/net/wireless/wl3501_cs.c +++ b/drivers/net/wireless/wl3501_cs.c | |||
@@ -1976,7 +1976,6 @@ static int wl3501_attach(struct pcmcia_device *p_dev) | |||
1976 | 1976 | ||
1977 | /* General socket configuration */ | 1977 | /* General socket configuration */ |
1978 | link->conf.Attributes = CONF_ENABLE_IRQ; | 1978 | link->conf.Attributes = CONF_ENABLE_IRQ; |
1979 | link->conf.Vcc = 50; | ||
1980 | link->conf.IntType = INT_MEMORY_AND_IO; | 1979 | link->conf.IntType = INT_MEMORY_AND_IO; |
1981 | link->conf.ConfigIndex = 1; | 1980 | link->conf.ConfigIndex = 1; |
1982 | link->conf.Present = PRESENT_OPTION; | 1981 | link->conf.Present = PRESENT_OPTION; |