diff options
Diffstat (limited to 'drivers/usb/host/sl811_cs.c')
-rw-r--r-- | drivers/usb/host/sl811_cs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c index 0e13a00eb2ed..8e8475298baa 100644 --- a/drivers/usb/host/sl811_cs.c +++ b/drivers/usb/host/sl811_cs.c | |||
@@ -152,10 +152,10 @@ static int sl811_cs_config_check(struct pcmcia_device *p_dev, | |||
152 | } | 152 | } |
153 | 153 | ||
154 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 154 | if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
155 | p_dev->conf.Vpp = | 155 | p_dev->vpp = |
156 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; | 156 | cfg->vpp1.param[CISTPL_POWER_VNOM]/10000; |
157 | else if (dflt->vpp1.present & (1<<CISTPL_POWER_VNOM)) | 157 | else if (dflt->vpp1.present & (1<<CISTPL_POWER_VNOM)) |
158 | p_dev->conf.Vpp = | 158 | p_dev->vpp = |
159 | dflt->vpp1.param[CISTPL_POWER_VNOM]/10000; | 159 | dflt->vpp1.param[CISTPL_POWER_VNOM]/10000; |
160 | 160 | ||
161 | /* we need an interrupt */ | 161 | /* we need an interrupt */ |
@@ -201,8 +201,8 @@ static int sl811_cs_config(struct pcmcia_device *link) | |||
201 | 201 | ||
202 | dev_info(&link->dev, "index 0x%02x: ", | 202 | dev_info(&link->dev, "index 0x%02x: ", |
203 | link->conf.ConfigIndex); | 203 | link->conf.ConfigIndex); |
204 | if (link->conf.Vpp) | 204 | if (link->vpp) |
205 | printk(", Vpp %d.%d", link->conf.Vpp/10, link->conf.Vpp%10); | 205 | printk(", Vpp %d.%d", link->vpp/10, link->vpp%10); |
206 | printk(", irq %d", link->irq); | 206 | printk(", irq %d", link->irq); |
207 | printk(", io %pR", link->resource[0]); | 207 | printk(", io %pR", link->resource[0]); |
208 | printk("\n"); | 208 | printk("\n"); |