diff options
Diffstat (limited to 'drivers/bluetooth/bt3c_cs.c')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index d58e22b9f06a..9787fda45d84 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -740,21 +740,16 @@ static int bt3c_config(struct pcmcia_device *link) | |||
740 | goto found_port; | 740 | goto found_port; |
741 | 741 | ||
742 | BT_ERR("No usable port range found"); | 742 | BT_ERR("No usable port range found"); |
743 | cs_error(link, RequestIO, -ENODEV); | ||
744 | goto failed; | 743 | goto failed; |
745 | 744 | ||
746 | found_port: | 745 | found_port: |
747 | i = pcmcia_request_irq(link, &link->irq); | 746 | i = pcmcia_request_irq(link, &link->irq); |
748 | if (i != 0) { | 747 | if (i != 0) |
749 | cs_error(link, RequestIRQ, i); | ||
750 | link->irq.AssignedIRQ = 0; | 748 | link->irq.AssignedIRQ = 0; |
751 | } | ||
752 | 749 | ||
753 | i = pcmcia_request_configuration(link, &link->conf); | 750 | i = pcmcia_request_configuration(link, &link->conf); |
754 | if (i != 0) { | 751 | if (i != 0) |
755 | cs_error(link, RequestConfiguration, i); | ||
756 | goto failed; | 752 | goto failed; |
757 | } | ||
758 | 753 | ||
759 | if (bt3c_open(info) != 0) | 754 | if (bt3c_open(info) != 0) |
760 | goto failed; | 755 | goto failed; |