diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2009-01-06 17:40:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:10 -0500 |
commit | bdbeed75b288443ea14208eafaac3941f385f2ae (patch) | |
tree | 0be768ee4d1b064af120655109da93e4095f6774 /drivers/misc/tifm_7xx1.c | |
parent | ea435467500612636f8f4fb639ff6e76b2496e4b (diff) |
pci: use pci_ioremap_bar() in drivers/misc
Use the newly introduced pci_ioremap_bar() function in drivers/misc.
pci_ioremap_bar() just takes a pci device and a bar number, with the goal
of making it really hard to get wrong, while also having a central place
to stick sanity checks.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/tifm_7xx1.c')
-rw-r--r-- | drivers/misc/tifm_7xx1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/misc/tifm_7xx1.c b/drivers/misc/tifm_7xx1.c index 67503ea71d21..af6173319e07 100644 --- a/drivers/misc/tifm_7xx1.c +++ b/drivers/misc/tifm_7xx1.c | |||
@@ -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 | ||