diff options
Diffstat (limited to 'drivers/misc/tifm_7xx1.c')
-rw-r--r-- | drivers/misc/tifm_7xx1.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/misc/tifm_7xx1.c b/drivers/misc/tifm_7xx1.c index 67503ea71d21..be5672a98702 100644 --- a/drivers/misc/tifm_7xx1.c +++ b/drivers/misc/tifm_7xx1.c | |||
@@ -164,7 +164,7 @@ static void tifm_7xx1_switch_media(struct work_struct *work) | |||
164 | if (sock) { | 164 | if (sock) { |
165 | printk(KERN_INFO | 165 | printk(KERN_INFO |
166 | "%s : demand removing card from socket %u:%u\n", | 166 | "%s : demand removing card from socket %u:%u\n", |
167 | fm->dev.bus_id, fm->id, cnt); | 167 | dev_name(&fm->dev), fm->id, cnt); |
168 | fm->sockets[cnt] = NULL; | 168 | fm->sockets[cnt] = NULL; |
169 | sock_addr = sock->addr; | 169 | sock_addr = sock->addr; |
170 | spin_unlock_irqrestore(&fm->lock, flags); | 170 | spin_unlock_irqrestore(&fm->lock, flags); |
@@ -354,8 +354,7 @@ static int tifm_7xx1_probe(struct pci_dev *dev, | |||
354 | fm->has_ms_pif = tifm_7xx1_has_ms_pif; | 354 | fm->has_ms_pif = tifm_7xx1_has_ms_pif; |
355 | pci_set_drvdata(dev, fm); | 355 | pci_set_drvdata(dev, fm); |
356 | 356 | ||
357 | fm->addr = ioremap(pci_resource_start(dev, 0), | 357 | fm->addr = pci_ioremap_bar(dev, 0); |
358 | pci_resource_len(dev, 0)); | ||
359 | if (!fm->addr) | 358 | if (!fm->addr) |
360 | goto err_out_free; | 359 | goto err_out_free; |
361 | 360 | ||