aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKumar Gala <galak@gate.crashing.org>2005-12-19 15:49:07 -0600
committerPaul Mackerras <paulus@samba.org>2006-01-09 15:05:59 +1100
commite5cd040409dc0f8d34a21827d6b74918b3a4fccf (patch)
tree086995318a741375df3529e44f55e3ae14406525
parentf2c4583a381c584c8c025048071a120cc9562ded (diff)
downloadlinux-e5cd040409dc0f8d34a21827d6b74918b3a4fccf.tar.gz
[PATCH] powerpc: Fix compile problem in pci.c for ppc32
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>
-rw-r--r--arch/ppc/kernel/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/kernel/pci.c b/arch/ppc/kernel/pci.c
index c8b48f171699a..50c75eec8874d 100644
--- a/arch/ppc/kernel/pci.c
+++ b/arch/ppc/kernel/pci.c
@@ -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;
}