diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2006-01-11 13:54:17 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2006-01-11 13:54:17 -0600 |
commit | 4e2531378f03957d7306e940e0bc21de103f40d3 (patch) | |
tree | 05de404e5a779d16e933b8433d482fd41c289313 /common | |
parent | e4f880eddde5406fc9dd1edf7e6a49422f3d8e7b (diff) |
Allow board code to fixup the flat device tree before booting a
kernel
Patch by Kumar Gala 11 Jan 2006
Diffstat (limited to 'common')
-rw-r--r-- | common/ft_build.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/ft_build.c b/common/ft_build.c index 57194581a10..2cecbcf9664 100644 --- a/common/ft_build.c +++ b/common/ft_build.c @@ -698,9 +698,12 @@ void ft_setup(void *blob, int size, bd_t * bd) if (p != NULL) *p = cpu_to_be32(clock); #endif - #endif /* __powerpc__ */ +#ifdef CONFIG_OF_BOARD_SETUP + ft_board_setup(blob, bd); +#endif + /* printf("final OF-tree\n"); ft_dump_blob(blob); |