[PATCH] powerpc: Fix compile problem in pci.c for ppc32
authorKumar Gala <galak@gate.crashing.org>
Mon, 19 Dec 2005 21:49:07 +0000 (15:49 -0600)
committerPaul Mackerras <paulus@samba.org>
Mon, 9 Jan 2006 04:05:59 +0000 (15:05 +1100)
pci_address_to_pio is missing a closing curly brace

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/ppc/kernel/pci.c

index c8b48f1..50c75ee 100644 (file)
@@ -1823,7 +1823,7 @@ unsigned long pci_address_to_pio(phys_addr_t address)
                        unsigned long base =
                                (unsigned long)hose->io_base_virt - _IO_BASE;
                        return base + (address - hose->io_base_phys);
-
+               }
        }
        return (unsigned int)-1;
 }