diff options
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index 17788317c51a..3d72afddabb3 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -575,9 +575,6 @@ static int dtl1_probe(struct pcmcia_device *link) | |||
575 | 575 | ||
576 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_8; | 576 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_8; |
577 | link->io.NumPorts1 = 8; | 577 | link->io.NumPorts1 = 8; |
578 | link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING; | ||
579 | |||
580 | link->irq.Handler = dtl1_interrupt; | ||
581 | 578 | ||
582 | link->conf.Attributes = CONF_ENABLE_IRQ; | 579 | link->conf.Attributes = CONF_ENABLE_IRQ; |
583 | link->conf.IntType = INT_MEMORY_AND_IO; | 580 | link->conf.IntType = INT_MEMORY_AND_IO; |
@@ -621,9 +618,9 @@ static int dtl1_config(struct pcmcia_device *link) | |||
621 | if (pcmcia_loop_config(link, dtl1_confcheck, NULL) < 0) | 618 | if (pcmcia_loop_config(link, dtl1_confcheck, NULL) < 0) |
622 | goto failed; | 619 | goto failed; |
623 | 620 | ||
624 | i = pcmcia_request_irq(link, &link->irq); | 621 | i = pcmcia_request_irq(link, dtl1_interrupt); |
625 | if (i != 0) | 622 | if (i != 0) |
626 | link->irq.AssignedIRQ = 0; | 623 | goto failed; |
627 | 624 | ||
628 | i = pcmcia_request_configuration(link, &link->conf); | 625 | i = pcmcia_request_configuration(link, &link->conf); |
629 | if (i != 0) | 626 | if (i != 0) |