diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-15 06:43:16 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:15:55 -0500 |
commit | 70294b468302fd7a0a99dad935c7ba5322989345 (patch) | |
tree | e54b0b7c85517ef717f3755e06ca08fbb0f5937e /drivers/net/pcmcia/axnet_cs.c | |
parent | 4bbed5231468014b500b048d7370a1c6c349231a (diff) |
[PATCH] pcmcia: remove unneeded Vcc pseudo setting
As we do not allow setting Vcc in the pcmcia core, and Vpp1 and
Vpp2 can only be set to the same value, a lot of code can be
streamlined.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/net/pcmcia/axnet_cs.c')
-rw-r--r-- | drivers/net/pcmcia/axnet_cs.c | 5 |
1 files changed, 0 insertions, 5 deletions
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)); |