diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-29 09:50:55 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-09-29 11:20:21 -0400 |
commit | e8405f0f617856de0ceb7d04e65b663051451544 (patch) | |
tree | 06e9cd27419a40587bcec19b71010e52b7dfcba4 /drivers/isdn | |
parent | fb49fa533f9d211994c33efb752ffa5b30033729 (diff) |
pcmcia: move Vpp setup to struct pcmcia_device
Some drivers prefer to explicitly set Vpp. Instead of passing the
voltage inside config_req_t, store it in struct pcmcia_device.
CC: linux-ide@vger.kernel.org
CC: netdev@vger.kernel.org
CC: linux-mtd@lists.infradead.org
CC: linux-wireless@vger.kernel.org
CC: linux-serial@vger.kernel.org
CC: linux-usb@vger.kernel.org
CC: linux-scsi@vger.kernel.org
Acked-by: Gustavo F. Padovan <padovan@profusion.mobi> (for drivers/bluetooth)
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hisax/sedlbauer_cs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/hisax/sedlbauer_cs.c b/drivers/isdn/hisax/sedlbauer_cs.c index a024192b672a..ad07d61dc09b 100644 --- a/drivers/isdn/hisax/sedlbauer_cs.c +++ b/drivers/isdn/hisax/sedlbauer_cs.c | |||
@@ -191,9 +191,9 @@ static int sedlbauer_config_check(struct pcmcia_device *p_dev, | |||
191 | } | 191 | } |
192 | 192 | ||
193 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 193 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
194 | p_dev->conf.Vpp = cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; | 194 | p_dev->vpp = cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; |
195 | else if (dflt->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 195 | else if (dflt->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
196 | p_dev->conf.Vpp = dflt->vpp1.param[CISTPL_POWER_VNOM]/10000; | 196 | p_dev->vpp = dflt->vpp1.param[CISTPL_POWER_VNOM]/10000; |
197 | 197 | ||
198 | p_dev->conf.Attributes |= CONF_ENABLE_IRQ; | 198 | p_dev->conf.Attributes |= CONF_ENABLE_IRQ; |
199 | 199 | ||
@@ -257,8 +257,8 @@ static int __devinit sedlbauer_config(struct pcmcia_device *link) | |||
257 | /* Finally, report what we've done */ | 257 | /* Finally, report what we've done */ |
258 | dev_info(&link->dev, "index 0x%02x:", | 258 | dev_info(&link->dev, "index 0x%02x:", |
259 | link->conf.ConfigIndex); | 259 | link->conf.ConfigIndex); |
260 | if (link->conf.Vpp) | 260 | if (link->vpp) |
261 | printk(", Vpp %d.%d", link->conf.Vpp/10, link->conf.Vpp%10); | 261 | printk(", Vpp %d.%d", link->vpp/10, link->vpp%10); |
262 | if (link->conf.Attributes & CONF_ENABLE_IRQ) | 262 | if (link->conf.Attributes & CONF_ENABLE_IRQ) |
263 | printk(", irq %d", link->irq); | 263 | printk(", irq %d", link->irq); |
264 | if (link->resource[0]) | 264 | if (link->resource[0]) |