diff options
Diffstat (limited to 'drivers/net/wireless/orinoco')
| -rw-r--r-- | drivers/net/wireless/orinoco/orinoco_cs.c | 12 | ||||
| -rw-r--r-- | drivers/net/wireless/orinoco/spectrum_cs.c | 12 | 
2 files changed, 4 insertions, 20 deletions
diff --git a/drivers/net/wireless/orinoco/orinoco_cs.c b/drivers/net/wireless/orinoco/orinoco_cs.c index 1147d6bd473..00316a1a109 100644 --- a/drivers/net/wireless/orinoco/orinoco_cs.c +++ b/drivers/net/wireless/orinoco/orinoco_cs.c @@ -17,7 +17,6 @@  #include <linux/kernel.h>  #include <linux/init.h>  #include <linux/delay.h> -#include <pcmcia/cs.h>  #include <pcmcia/cistpl.h>  #include <pcmcia/cisreg.h>  #include <pcmcia/ds.h> @@ -117,13 +116,6 @@ orinoco_cs_probe(struct pcmcia_device *link)  	card->p_dev = link;  	link->priv = priv; -	/* General socket configuration defaults can go here.  In this -	 * client, we assume very little, and rely on the CIS for -	 * almost everything.  In most clients, many details (i.e., -	 * number, sizes, and attributes of IO windows) are fixed by -	 * the nature of the device, and can be hard-wired here. */ -	link->conf.Attributes = 0; -  	return orinoco_cs_config(link);  }				/* orinoco_cs_attach */ @@ -187,7 +179,7 @@ static int orinoco_cs_config_check(struct pcmcia_device *p_dev,  			dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;  	/* Do we need to allocate an interrupt? */ -	p_dev->conf.Attributes |= CONF_ENABLE_IRQ; +	p_dev->config_flags |= CONF_ENABLE_IRQ;  	/* IO window settings */  	p_dev->resource[0]->end = p_dev->resource[1]->end = 0; @@ -266,7 +258,7 @@ orinoco_cs_config(struct pcmcia_device *link)  	 * the I/O windows and the interrupt mapping, and putting the  	 * card and host interface into "Memory and IO" mode.  	 */ -	ret = pcmcia_request_configuration(link, &link->conf); +	ret = pcmcia_enable_device(link);  	if (ret)  		goto failed; diff --git a/drivers/net/wireless/orinoco/spectrum_cs.c b/drivers/net/wireless/orinoco/spectrum_cs.c index 20b08ab8765..ca2c6c0c557 100644 --- a/drivers/net/wireless/orinoco/spectrum_cs.c +++ b/drivers/net/wireless/orinoco/spectrum_cs.c @@ -25,7 +25,6 @@  #include <linux/kernel.h>  #include <linux/init.h>  #include <linux/delay.h> -#include <pcmcia/cs.h>  #include <pcmcia/cistpl.h>  #include <pcmcia/cisreg.h>  #include <pcmcia/ds.h> @@ -179,13 +178,6 @@ spectrum_cs_probe(struct pcmcia_device *link)  	card->p_dev = link;  	link->priv = priv; -	/* General socket configuration defaults can go here.  In this -	 * client, we assume very little, and rely on the CIS for -	 * almost everything.  In most clients, many details (i.e., -	 * number, sizes, and attributes of IO windows) are fixed by -	 * the nature of the device, and can be hard-wired here. */ -	link->conf.Attributes = 0; -  	return spectrum_cs_config(link);  }				/* spectrum_cs_attach */ @@ -249,7 +241,7 @@ static int spectrum_cs_config_check(struct pcmcia_device *p_dev,  			dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;  	/* Do we need to allocate an interrupt? */ -	p_dev->conf.Attributes |= CONF_ENABLE_IRQ; +	p_dev->config_flags |= CONF_ENABLE_IRQ;  	/* IO window settings */  	p_dev->resource[0]->end = p_dev->resource[1]->end = 0; @@ -329,7 +321,7 @@ spectrum_cs_config(struct pcmcia_device *link)  	 * the I/O windows and the interrupt mapping, and putting the  	 * card and host interface into "Memory and IO" mode.  	 */ -	ret = pcmcia_request_configuration(link, &link->conf); +	ret = pcmcia_enable_device(link);  	if (ret)  		goto failed;  |