diff options
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
| -rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index b4c9a2e0a96..38206df7206 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c @@ -41,7 +41,6 @@  #include <asm/system.h>  #include <asm/io.h> -#include <pcmcia/cs.h>  #include <pcmcia/cistpl.h>  #include <pcmcia/ciscode.h>  #include <pcmcia/ds.h> @@ -575,7 +574,7 @@ static int dtl1_probe(struct pcmcia_device *link)  	link->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;  	link->resource[0]->end = 8; -	link->conf.Attributes = CONF_ENABLE_IRQ; +	link->config_flags |= CONF_ENABLE_IRQ;  	return dtl1_config(link);  } @@ -619,7 +618,7 @@ static int dtl1_config(struct pcmcia_device *link)  	if (i != 0)  		goto failed; -	i = pcmcia_request_configuration(link, &link->conf); +	i = pcmcia_enable_device(link);  	if (i != 0)  		goto failed;  |