diff options
author | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-12-20 09:55:34 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-12-23 14:28:40 -0500 |
commit | 4922566f0394ac41c72fb960f22b4f84333026bc (patch) | |
tree | c75b2c3b7141f5216a01ea2a660fb36dee24f66c /arch/powerpc/platforms | |
parent | af7baf9259c12cfbe927a674f3bd17d855d1e156 (diff) |
[POWERPC] 4xx: libfdt and pci fixes for Rainier
Update the Rainier wrapper for the libfdt merge and add the pci flags to the
platform file.
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r-- | arch/powerpc/platforms/44x/rainier.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/44x/rainier.c b/arch/powerpc/platforms/44x/rainier.c index 5a01bef21846..ce8167bb301f 100644 --- a/arch/powerpc/platforms/44x/rainier.c +++ b/arch/powerpc/platforms/44x/rainier.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/time.h> | 20 | #include <asm/time.h> |
21 | #include <asm/uic.h> | 21 | #include <asm/uic.h> |
22 | #include <asm/of_platform.h> | 22 | #include <asm/of_platform.h> |
23 | #include <asm/pci-bridge.h> | ||
23 | #include "44x.h" | 24 | #include "44x.h" |
24 | 25 | ||
25 | static struct of_device_id rainier_of_bus[] = { | 26 | static struct of_device_id rainier_of_bus[] = { |
@@ -47,6 +48,8 @@ static int __init rainier_probe(void) | |||
47 | if (!of_flat_dt_is_compatible(root, "amcc,rainier")) | 48 | if (!of_flat_dt_is_compatible(root, "amcc,rainier")) |
48 | return 0; | 49 | return 0; |
49 | 50 | ||
51 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
52 | |||
50 | return 1; | 53 | return 1; |
51 | } | 54 | } |
52 | 55 | ||