diff options
author | Grant Likely | 2011-02-04 19:24:11 +0100 |
---|---|---|
committer | Grant Likely | 2011-02-04 19:46:51 +0100 |
commit | b5d937de0367d26f65b9af1aef5f2c34c1939be0 (patch) | |
tree | e91eaaa72ef1aae543a1fa494171f7e3c0c14d94 /arch/microblaze/pci/pci_32.c | |
parent | of/pci: move of_irq_map_pci() into generic code (diff) | |
download | kernel-qcow2-linux-b5d937de0367d26f65b9af1aef5f2c34c1939be0.tar.gz kernel-qcow2-linux-b5d937de0367d26f65b9af1aef5f2c34c1939be0.tar.xz kernel-qcow2-linux-b5d937de0367d26f65b9af1aef5f2c34c1939be0.zip |
powerpc/pci: Make both ppc32 and ppc64 use sysdata for pci_controller
Currently, ppc32 uses sysdata for the pci_controller pointer, and
ppc64 uses it to hold the device_node pointer. This patch moves the
of_node pointer into (struct pci_bus*)->dev.of_node and
(struct pci_dev*)->dev.of_node so that sysdata can be converted to always
use the pci_controller pointer instead. It also fixes up the
allocating of pci devices so that the of_node pointer gets assigned
consistently and increments the ref count.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/microblaze/pci/pci_32.c')
-rw-r--r-- | arch/microblaze/pci/pci_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/microblaze/pci/pci_32.c b/arch/microblaze/pci/pci_32.c index 3c3d808d7ce0..92728a6cfd80 100644 --- a/arch/microblaze/pci/pci_32.c +++ b/arch/microblaze/pci/pci_32.c @@ -332,6 +332,7 @@ static void __devinit pcibios_scan_phb(struct pci_controller *hose) hose->global_number); return; } + bus.dev->of_node = of_node_get(node); bus->secondary = hose->first_busno; hose->bus = bus; |