aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/btuart_cs.c
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2010-07-24 11:23:51 -0400
committerDominik Brodowski <linux@dominikbrodowski.net>2010-08-03 03:04:11 -0400
commit90abdc3b973229bae98dd96649d9f7106cc177a4 (patch)
tree5c1a7a131b65560dd73b5103118d8c7631bd76a4 /drivers/bluetooth/btuart_cs.c
parent9a017a910346afd88ec2e065989903bf211a7d37 (diff)
pcmcia: do not use io_req_t when calling pcmcia_request_io()
Instead of io_req_t, drivers are now requested to fill out struct pcmcia_device *p_dev->resource[0,1] for up to two ioport ranges. After a call to pcmcia_request_io(), the ports found there are reserved, after calling pcmcia_request_configuration(), they may be used. CC: netdev@vger.kernel.org CC: linux-wireless@vger.kernel.org CC: linux-ide@vger.kernel.org CC: linux-usb@vger.kernel.org CC: laforge@gnumonks.org CC: linux-mtd@lists.infradead.org CC: alsa-devel@alsa-project.org CC: linux-serial@vger.kernel.org CC: Michael Buesch <mb@bu3sch.de> Acked-by: Marcel Holtmann <marcel@holtmann.org> (for drivers/bluetooth/) Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/btuart_cs.c')
-rw-r--r--drivers/bluetooth/btuart_cs.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c
index 7e770d40368d..1c4f5e863b03 100644
--- a/drivers/bluetooth/btuart_cs.c
+++ b/drivers/bluetooth/btuart_cs.c
@@ -586,8 +586,8 @@ static int btuart_probe(struct pcmcia_device *link)
586 info->p_dev = link; 586 info->p_dev = link;
587 link->priv = info; 587 link->priv = info;
588 588
589 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8; 589 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
590 link->io.NumPorts1 = 8; 590 link->resource[0]->end = 8;
591 591
592 link->conf.Attributes = CONF_ENABLE_IRQ; 592 link->conf.Attributes = CONF_ENABLE_IRQ;
593 link->conf.IntType = INT_MEMORY_AND_IO; 593 link->conf.IntType = INT_MEMORY_AND_IO;
@@ -612,14 +612,14 @@ static int btuart_check_config(struct pcmcia_device *p_dev,
612{ 612{
613 int *try = priv_data; 613 int *try = priv_data;
614 614
615 p_dev->io_lines = (try == 0) ? 16 : cf->io.flags & CISTPL_IO_LINES_MASK;
616
615 if (cf->vpp1.present & (1 << CISTPL_POWER_VNOM)) 617 if (cf->vpp1.present & (1 << CISTPL_POWER_VNOM))
616 p_dev->conf.Vpp = cf->vpp1.param[CISTPL_POWER_VNOM] / 10000; 618 p_dev->conf.Vpp = cf->vpp1.param[CISTPL_POWER_VNOM] / 10000;
617 if ((cf->io.nwin > 0) && (cf->io.win[0].len == 8) && 619 if ((cf->io.nwin > 0) && (cf->io.win[0].len == 8) &&
618 (cf->io.win[0].base != 0)) { 620 (cf->io.win[0].base != 0)) {
619 p_dev->io.BasePort1 = cf->io.win[0].base; 621 p_dev->resource[0]->start = cf->io.win[0].base;
620 p_dev->io.IOAddrLines = (*try == 0) ? 16 : 622 if (!pcmcia_request_io(p_dev))
621 cf->io.flags & CISTPL_IO_LINES_MASK;
622 if (!pcmcia_request_io(p_dev, &p_dev->io))
623 return 0; 623 return 0;
624 } 624 }
625 return -ENODEV; 625 return -ENODEV;
@@ -636,9 +636,9 @@ static int btuart_check_config_notpicky(struct pcmcia_device *p_dev,
636 636
637 if ((cf->io.nwin > 0) && ((cf->io.flags & CISTPL_IO_LINES_MASK) <= 3)) { 637 if ((cf->io.nwin > 0) && ((cf->io.flags & CISTPL_IO_LINES_MASK) <= 3)) {
638 for (j = 0; j < 5; j++) { 638 for (j = 0; j < 5; j++) {
639 p_dev->io.BasePort1 = base[j]; 639 p_dev->resource[0]->start = base[j];
640 p_dev->io.IOAddrLines = base[j] ? 16 : 3; 640 p_dev->io_lines = base[j] ? 16 : 3;
641 if (!pcmcia_request_io(p_dev, &p_dev->io)) 641 if (!pcmcia_request_io(p_dev))
642 return 0; 642 return 0;
643 } 643 }
644 } 644 }