diff options
Diffstat (limited to 'drivers/bluetooth/bt3c_cs.c')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index 3fd8022a6351..156edfd7e10d 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -743,13 +743,13 @@ static int bt3c_config(struct pcmcia_device *link) | |||
743 | 743 | ||
744 | found_port: | 744 | found_port: |
745 | i = pcmcia_request_irq(link, &link->irq); | 745 | i = pcmcia_request_irq(link, &link->irq); |
746 | if (i != CS_SUCCESS) { | 746 | if (i != 0) { |
747 | cs_error(link, RequestIRQ, i); | 747 | cs_error(link, RequestIRQ, i); |
748 | link->irq.AssignedIRQ = 0; | 748 | link->irq.AssignedIRQ = 0; |
749 | } | 749 | } |
750 | 750 | ||
751 | i = pcmcia_request_configuration(link, &link->conf); | 751 | i = pcmcia_request_configuration(link, &link->conf); |
752 | if (i != CS_SUCCESS) { | 752 | if (i != 0) { |
753 | cs_error(link, RequestConfiguration, i); | 753 | cs_error(link, RequestConfiguration, i); |
754 | goto failed; | 754 | goto failed; |
755 | } | 755 | } |