aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/kernel/pci.c
diff options
context:
space:
mode:
authorKumar Gala <galak@gate.crashing.org>2005-12-19 16:49:07 -0500
committerPaul Mackerras <paulus@samba.org>2006-01-08 23:05:59 -0500
commite5cd040409dc0f8d34a21827d6b74918b3a4fccf (patch)
tree086995318a741375df3529e44f55e3ae14406525 /arch/ppc/kernel/pci.c
parentf2c4583a381c584c8c025048071a120cc9562ded (diff)
[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>
Diffstat (limited to 'arch/ppc/kernel/pci.c')
-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 c8b48f171699..50c75eec8874 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)
1823 unsigned long base = 1823 unsigned long base =
1824 (unsigned long)hose->io_base_virt - _IO_BASE; 1824 (unsigned long)hose->io_base_virt - _IO_BASE;
1825 return base + (address - hose->io_base_phys); 1825 return base + (address - hose->io_base_phys);
1826 1826 }
1827 } 1827 }
1828 return (unsigned int)-1; 1828 return (unsigned int)-1;
1829} 1829}