diff options
Diffstat (limited to 'drivers/bluetooth/btuart_cs.c')
-rw-r--r-- | drivers/bluetooth/btuart_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 17183125434f..8e556b7ff9f6 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c | |||
@@ -672,13 +672,13 @@ static int btuart_config(struct pcmcia_device *link) | |||
672 | 672 | ||
673 | found_port: | 673 | found_port: |
674 | i = pcmcia_request_irq(link, &link->irq); | 674 | i = pcmcia_request_irq(link, &link->irq); |
675 | if (i != CS_SUCCESS) { | 675 | if (i != 0) { |
676 | cs_error(link, RequestIRQ, i); | 676 | cs_error(link, RequestIRQ, i); |
677 | link->irq.AssignedIRQ = 0; | 677 | link->irq.AssignedIRQ = 0; |
678 | } | 678 | } |
679 | 679 | ||
680 | i = pcmcia_request_configuration(link, &link->conf); | 680 | i = pcmcia_request_configuration(link, &link->conf); |
681 | if (i != CS_SUCCESS) { | 681 | if (i != 0) { |
682 | cs_error(link, RequestConfiguration, i); | 682 | cs_error(link, RequestConfiguration, i); |
683 | goto failed; | 683 | goto failed; |
684 | } | 684 | } |