projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68e6fad
)
ARM: 6608/1: enable bridges in pci_common_init.
author
Colin Tuckley
<
[email protected]
>
Thu, 6 Jan 2011 10:16:49 +0000
(11:16 +0100)
committer
Russell King
<
[email protected]
>
Wed, 23 Feb 2011 17:24:14 +0000
(17:24 +0000)
Add a missing call to pci_enable_bridges() so that devices behind
bridges get found by the pci bus scan.
Signed-off-by: Chris Partington <
[email protected]
>
Acked-by: Catalin Marinas <
[email protected]
>
Signed-off-by: Russell King <
[email protected]
>
arch/arm/kernel/bios32.c
patch
|
blob
|
history
diff --git
a/arch/arm/kernel/bios32.c
b/arch/arm/kernel/bios32.c
index c6273a3bfc253b01ea7fb1fe3d839b789887e47b..d86fcd44b2204f597b24d0b81fac4298d90d0a8c 100644
(file)
--- a/
arch/arm/kernel/bios32.c
+++ b/
arch/arm/kernel/bios32.c
@@
-583,6
+583,11
@@
void __init pci_common_init(struct hw_pci *hw)
* Assign resources.
*/
pci_bus_assign_resources(bus);
+
+ /*
+ * Enable bridges
+ */
+ pci_enable_bridges(bus);
}
/*