diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2009-10-24 09:45:06 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2009-11-08 12:23:15 -0500 |
commit | 9ac3e58ceff0b7b8b981c09c38a28742270eea12 (patch) | |
tree | 04f6137d3128750f5d2ff15c0a52cb17e6c00b35 /drivers/bluetooth/dtl1_cs.c | |
parent | 444486a5f9d2737b50e53dc140292899b9497808 (diff) |
pcmcia: deprecate CS_CHECK (bluetooth)
Remove all usages of the CS_CHECK macro and replace them with proper
Linux style calling and return value checking. The extra error reporting may
be dropped, as the PCMCIA core already complains about any (non-driver-author)
errors.
CC: linux-bluetooth@vger.kernel.org
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index b881a9cd8741..7cd8614a8ea9 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -622,16 +622,12 @@ static int dtl1_config(struct pcmcia_device *link) | |||
622 | goto failed; | 622 | goto failed; |
623 | 623 | ||
624 | i = pcmcia_request_irq(link, &link->irq); | 624 | i = pcmcia_request_irq(link, &link->irq); |
625 | if (i != 0) { | 625 | if (i != 0) |
626 | cs_error(link, RequestIRQ, i); | ||
627 | link->irq.AssignedIRQ = 0; | 626 | link->irq.AssignedIRQ = 0; |
628 | } | ||
629 | 627 | ||
630 | i = pcmcia_request_configuration(link, &link->conf); | 628 | i = pcmcia_request_configuration(link, &link->conf); |
631 | if (i != 0) { | 629 | if (i != 0) |
632 | cs_error(link, RequestConfiguration, i); | ||
633 | goto failed; | 630 | goto failed; |
634 | } | ||
635 | 631 | ||
636 | if (dtl1_open(info) != 0) | 632 | if (dtl1_open(info) != 0) |
637 | goto failed; | 633 | goto failed; |