diff options
Diffstat (limited to 'drivers/bluetooth/btuart_cs.c')
| -rw-r--r-- | drivers/bluetooth/btuart_cs.c | 11 | 
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 60c0953d7d00..4ed7288f99db 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c @@ -67,7 +67,6 @@ MODULE_LICENSE("GPL");  typedef struct btuart_info_t {  	struct pcmcia_device *p_dev; -	dev_node_t node;  	struct hci_dev *hdev; @@ -590,9 +589,6 @@ static int btuart_probe(struct pcmcia_device *link)  	link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;  	link->io.NumPorts1 = 8; -	link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING; - -	link->irq.Handler = btuart_interrupt;  	link->conf.Attributes = CONF_ENABLE_IRQ;  	link->conf.IntType = INT_MEMORY_AND_IO; @@ -672,9 +668,9 @@ static int btuart_config(struct pcmcia_device *link)  	goto failed;  found_port: -	i = pcmcia_request_irq(link, &link->irq); +	i = pcmcia_request_irq(link, btuart_interrupt);  	if (i != 0) -		link->irq.AssignedIRQ = 0; +		goto failed;  	i = pcmcia_request_configuration(link, &link->conf);  	if (i != 0) @@ -683,9 +679,6 @@ found_port:  	if (btuart_open(info) != 0)  		goto failed; -	strcpy(info->node.dev_name, info->hdev->name); -	link->dev_node = &info->node; -  	return 0;  failed:  |