diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-11-04 07:00:06 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 18:21:49 -0500 |
commit | bb856c5b494049584eca61c6069eb8e1b0f9ce35 (patch) | |
tree | eea7971b6423dba1c429da4ad3c2508f9344095f | |
parent | a8401fa57f1600ca0ad74b958c2c9eb494f40dc8 (diff) |
[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>
-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 240df9e33813..33c4f683d067 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) | |||
154 | pciu_write(PCICLKSELREG, QUARTER_VTCLOCK); | 154 | pciu_write(PCICLKSELREG, QUARTER_VTCLOCK); |
155 | else { | 155 | else { |
156 | printk(KERN_ERR "PCI Clock is over 33MHz.\n"); | 156 | printk(KERN_ERR "PCI Clock is over 33MHz.\n"); |
157 | iounmap(pciu_base); | ||
157 | return -EINVAL; | 158 | return -EINVAL; |
158 | } | 159 | } |
159 | 160 | ||