aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/txx9/generic/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/txx9/generic/setup.c')
-rw-r--r--arch/mips/txx9/generic/setup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c
index 8c60c78b9a9e..4fbd7baa7037 100644
--- a/arch/mips/txx9/generic/setup.c
+++ b/arch/mips/txx9/generic/setup.c
@@ -23,6 +23,7 @@
23#include <asm/bootinfo.h> 23#include <asm/bootinfo.h>
24#include <asm/time.h> 24#include <asm/time.h>
25#include <asm/txx9/generic.h> 25#include <asm/txx9/generic.h>
26#include <asm/txx9/pci.h>
26#ifdef CONFIG_CPU_TX49XX 27#ifdef CONFIG_CPU_TX49XX
27#include <asm/txx9/tx4938.h> 28#include <asm/txx9/tx4938.h>
28#endif 29#endif
@@ -194,6 +195,9 @@ void __init plat_mem_setup(void)
194 ioport_resource.end = ~0UL; /* no limit */ 195 ioport_resource.end = ~0UL; /* no limit */
195 iomem_resource.start = 0; 196 iomem_resource.start = 0;
196 iomem_resource.end = ~0UL; /* no limit */ 197 iomem_resource.end = ~0UL; /* no limit */
198#ifdef CONFIG_PCI
199 pcibios_plat_setup = txx9_pcibios_setup;
200#endif
197 txx9_board_vec->mem_setup(); 201 txx9_board_vec->mem_setup();
198} 202}
199 203