]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mips: fix typo introduced by resource handling cleanup
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Fri, 29 Jul 2011 00:11:01 +0000 (20:11 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 31 Jul 2011 08:06:42 +0000 (04:06 -0400)
Commit 28f65c11f2ffb3957259dece647a24f8ad2e241b accidentally turned "rc"
into "rcrc" which causes this compile error:

arch/mips/pci/pci-rc32434.c: In function 'rc32434_pci_init':
arch/mips/pci/pci-rc32434.c:218: error: 'rcrc32434_res_pci_io1' undeclared (first use in this function)

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
CC: Joe Perches <joe@perches.com>
arch/mips/pci/pci-rc32434.c

index 764362ce5e404119b375f327d0c01111ee559383..5f3a69cebad1d51554052bec403279972d5023ee 100644 (file)
@@ -215,7 +215,7 @@ static int __init rc32434_pci_init(void)
        rc32434_pcibridge_init();
 
        io_map_base = ioremap(rc32434_res_pci_io1.start,
-                             resource_size(&rcrc32434_res_pci_io1));
+                             resource_size(&rc32434_res_pci_io1));
 
        if (!io_map_base)
                return -ENOMEM;