diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-02 10:12:00 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-22 19:22:52 -0400 |
commit | ad913c11928f51abb6174f165db8d8d205b22e21 (patch) | |
tree | a8542c846afb4950a12f46b16c1eacfa2280971a /drivers/bluetooth/bt3c_cs.c | |
parent | 8e2fc39ddea7fe8c6798837da282db88a09af793 (diff) |
pcmcia: pcmcia_config_loop() improvement by passing vcc
By passing the current Vcc setting to the pcmcia_config_loop callback
function, we can remove pcmcia_get_configuration_info() calls from many
drivers.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/bt3c_cs.c')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index 794a5ef9ea22..3fd8022a6351 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -681,6 +681,7 @@ static void bt3c_detach(struct pcmcia_device *link) | |||
681 | static int bt3c_check_config(struct pcmcia_device *p_dev, | 681 | static int bt3c_check_config(struct pcmcia_device *p_dev, |
682 | cistpl_cftable_entry_t *cf, | 682 | cistpl_cftable_entry_t *cf, |
683 | cistpl_cftable_entry_t *dflt, | 683 | cistpl_cftable_entry_t *dflt, |
684 | unsigned int vcc, | ||
684 | void *priv_data) | 685 | void *priv_data) |
685 | { | 686 | { |
686 | unsigned long try = (unsigned long) priv_data; | 687 | unsigned long try = (unsigned long) priv_data; |
@@ -701,6 +702,7 @@ static int bt3c_check_config(struct pcmcia_device *p_dev, | |||
701 | static int bt3c_check_config_notpicky(struct pcmcia_device *p_dev, | 702 | static int bt3c_check_config_notpicky(struct pcmcia_device *p_dev, |
702 | cistpl_cftable_entry_t *cf, | 703 | cistpl_cftable_entry_t *cf, |
703 | cistpl_cftable_entry_t *dflt, | 704 | cistpl_cftable_entry_t *dflt, |
705 | unsigned int vcc, | ||
704 | void *priv_data) | 706 | void *priv_data) |
705 | { | 707 | { |
706 | static unsigned int base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 }; | 708 | static unsigned int base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 }; |