public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pcmcia: dtl1_cs: fix pcmcia_loop_config logic
@ 2009-02-27 16:54 Philipp Zabel
  2009-02-27 22:35 ` pHilipp Zabel
  2009-02-28 21:35 ` Marcel Holtmann
  0 siblings, 2 replies; 8+ messages in thread
From: Philipp Zabel @ 2009-02-27 16:54 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: linux-pcmcia, Dominik Brodowski, Marcel Holtmann, Philipp Zabel

pcmcia_loop_config returns 0 on success.

Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
---
 drivers/bluetooth/dtl1_cs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c
index 901bdd9..e0ee642 100644
--- a/drivers/bluetooth/dtl1_cs.c
+++ b/drivers/bluetooth/dtl1_cs.c
@@ -616,7 +616,7 @@ static int dtl1_config(struct pcmcia_device *link)
 
 	/* Look for a generic full-sized window */
 	link->io.NumPorts1 = 8;
-	if (!pcmcia_loop_config(link, dtl1_confcheck, NULL))
+	if (pcmcia_loop_config(link, dtl1_confcheck, NULL))
 		goto failed;
 
 	i = pcmcia_request_irq(link, &link->irq);
-- 
1.5.6.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-07-27 10:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27 16:54 [PATCH] pcmcia: dtl1_cs: fix pcmcia_loop_config logic Philipp Zabel
2009-02-27 22:35 ` pHilipp Zabel
2009-02-28 21:38   ` Marcel Holtmann
2009-07-27  9:58   ` Wolfram Sang
2009-07-27 10:13     ` Marcel Holtmann
2009-07-27 10:30       ` Wolfram Sang
2009-02-28 21:35 ` Marcel Holtmann
2009-02-28 22:16   ` pHilipp Zabel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox