aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/isdn/hisax')
-rw-r--r--drivers/isdn/hisax/sedlbauer_cs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/hisax/sedlbauer_cs.c b/drivers/isdn/hisax/sedlbauer_cs.c
index a024192b672..ad07d61dc09 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])