diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2009-01-08 04:31:41 +0300 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-01-28 18:16:48 -0600 |
commit | 0585a155a7318e69d43ef20636c2f072ad17d03f (patch) | |
tree | 1d91b03a7ffa554efa659abc574246f5c61009ac /arch/powerpc/platforms/83xx/mpc831x_rdb.c | |
parent | 598804cd041c395ce87302af9088b2f227196185 (diff) | |
download | kernel_samsung_smdk4412-0585a155a7318e69d43ef20636c2f072ad17d03f.zip kernel_samsung_smdk4412-0585a155a7318e69d43ef20636c2f072ad17d03f.tar.gz kernel_samsung_smdk4412-0585a155a7318e69d43ef20636c2f072ad17d03f.tar.bz2 |
powerpc/83xx: Add PCI-E support for all MPC83xx boards with PCI-E
This patch adds pcie nodes to the appropriate dts files, plus adds
some probing code for the boards.
Also, remove of_device_is_avaliable() check from the mpc837x_mds.c
board file, as mpc83xx_add_bridge() has the same check now.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/83xx/mpc831x_rdb.c')
-rw-r--r-- | arch/powerpc/platforms/83xx/mpc831x_rdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/83xx/mpc831x_rdb.c b/arch/powerpc/platforms/83xx/mpc831x_rdb.c index 91a2c80..0b4f883 100644 --- a/arch/powerpc/platforms/83xx/mpc831x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc831x_rdb.c @@ -38,6 +38,8 @@ static void __init mpc831x_rdb_setup_arch(void) #ifdef CONFIG_PCI for_each_compatible_node(np, "pci", "fsl,mpc8349-pci") mpc83xx_add_bridge(np); + for_each_compatible_node(np, "pci", "fsl,mpc8314-pcie") + mpc83xx_add_bridge(np); #endif mpc831x_usb_cfg(); } |