diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2008-12-13 15:21:33 -0500 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-12-31 12:18:13 -0500 |
commit | ca4f10563929b932ed8970fda41a7f99385e4b0b (patch) | |
tree | e93646ccc3b4d7aa690532b403b0c86bff64d9b0 /drivers/mmc | |
parent | 504f191f25b1671802246bac06c9f59f94f0b7de (diff) |
mmc: balanc pci_iomap with pci_iounmap
balance pci_iomap with pci_iounmap, not iounmap
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdricoh_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdricoh_cs.c b/drivers/mmc/host/sdricoh_cs.c index 1df44d966bdb..d4748a8e0ded 100644 --- a/drivers/mmc/host/sdricoh_cs.c +++ b/drivers/mmc/host/sdricoh_cs.c | |||
@@ -463,7 +463,7 @@ static int sdricoh_init_mmc(struct pci_dev *pci_dev, | |||
463 | 463 | ||
464 | err: | 464 | err: |
465 | if (iobase) | 465 | if (iobase) |
466 | iounmap(iobase); | 466 | pci_iounmap(pci_dev, iobase); |
467 | if (mmc) | 467 | if (mmc) |
468 | mmc_free_host(mmc); | 468 | mmc_free_host(mmc); |
469 | 469 | ||