diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-02 08:59:13 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-22 19:21:29 -0400 |
commit | 498ac1899b62626bf6879a251d75c22ec564c559 (patch) | |
tree | d17c6c02ac97db98ac343a7ca1190147047385b2 /drivers/bluetooth/dtl1_cs.c | |
parent | 84e2d34004dcd0c90d1af43a143511b334f11a4d (diff) |
pcmcia: pcmcia_config_loop() ConfigIndex unification
Almost all drivers set p_dev->conf.ConfigIndex to cfg->index in
the pcmcia_config_loop() callback function. Therefore, factor it out.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index e30a6332c6c6..1846e2aa9d4a 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -595,7 +595,6 @@ static int dtl1_confcheck(struct pcmcia_device *p_dev, | |||
595 | void *priv_data) | 595 | void *priv_data) |
596 | { | 596 | { |
597 | if ((cf->io.nwin == 1) && (cf->io.win[0].len > 8)) { | 597 | if ((cf->io.nwin == 1) && (cf->io.win[0].len > 8)) { |
598 | p_dev->conf.ConfigIndex = cf->index; | ||
599 | p_dev->io.BasePort1 = cf->io.win[0].base; | 598 | p_dev->io.BasePort1 = cf->io.win[0].base; |
600 | p_dev->io.NumPorts1 = cf->io.win[0].len; /*yo */ | 599 | p_dev->io.NumPorts1 = cf->io.win[0].len; /*yo */ |
601 | p_dev->io.IOAddrLines = cf->io.flags & CISTPL_IO_LINES_MASK; | 600 | p_dev->io.IOAddrLines = cf->io.flags & CISTPL_IO_LINES_MASK; |