Skip to content

Commit

Permalink
ARM: 6608/1: enable bridges in pci_common_init.
Browse files Browse the repository at this point in the history
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 <chris.partington@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Colin Tuckley authored and Russell King committed Feb 23, 2011
1 parent 68e6fad commit a9f43c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/arm/kernel/bios32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/*
Expand Down

0 comments on commit a9f43c1

Please sign in to comment.