diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-11-04 13:00:06 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 23:21:49 +0000 |
commit | bb856c5b494049584eca61c6069eb8e1b0f9ce35 (patch) | |
tree | eea7971b6423dba1c429da4ad3c2508f9344095f /arch | |
parent | a8401fa57f1600ca0ad74b958c2c9eb494f40dc8 (diff) | |
download | linux-3.10-bb856c5b494049584eca61c6069eb8e1b0f9ce35.tar.gz linux-3.10-bb856c5b494049584eca61c6069eb8e1b0f9ce35.tar.bz2 linux-3.10-bb856c5b494049584eca61c6069eb8e1b0f9ce35.zip |
[MIPS] iounmap if in vr41xx_pciu_init() pci clock is over 33MHz
iounmap if pci clock is over 33MHz. Cosmetic because the iomap() in this
case is just a bit of address magic.
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Acked-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/pci/pci-vr41xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/pci/pci-vr41xx.c b/arch/mips/pci/pci-vr41xx.c index 240df9e3381..33c4f683d06 100644 --- a/arch/mips/pci/pci-vr41xx.c +++ b/arch/mips/pci/pci-vr41xx.c @@ -154,6 +154,7 @@ static int __init vr41xx_pciu_init(void) pciu_write(PCICLKSELREG, QUARTER_VTCLOCK); else { printk(KERN_ERR "PCI Clock is over 33MHz.\n"); + iounmap(pciu_base); return -EINVAL; } |