projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2c4583
)
[PATCH] powerpc: Fix compile problem in pci.c for ppc32
author
Kumar Gala
<galak@gate.crashing.org>
Mon, 19 Dec 2005 21:49:07 +0000
(15:49 -0600)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/arch/ppc/kernel/pci.c
b/arch/ppc/kernel/pci.c
index
c8b48f1
..
50c75ee
100644
(file)
--- 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;
}