diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-10-14 22:58:53 +0400 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-10-21 18:40:01 -0500 |
commit | 3bf1be3c0cfb1129b68cc1474119e5f323536488 (patch) | |
tree | a4c6dd08938d62366e6faa897da43e5ab5e12481 /board/freescale | |
parent | b3379f3fd13969934c00097c05754e7a8990fd39 (diff) | |
download | u-boot-imx-3bf1be3c0cfb1129b68cc1474119e5f323536488.zip u-boot-imx-3bf1be3c0cfb1129b68cc1474119e5f323536488.tar.gz u-boot-imx-3bf1be3c0cfb1129b68cc1474119e5f323536488.tar.bz2 |
mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
With this patch u-boot can fixup the dr_mode and phy_type properties
for the Dual-Role USB controller.
While at it, also remove #ifdefs around includes, they are not needed.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc837xemds/mpc837xemds.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/board/freescale/mpc837xemds/mpc837xemds.c b/board/freescale/mpc837xemds/mpc837xemds.c index 49afa7c..acf8ada 100644 --- a/board/freescale/mpc837xemds/mpc837xemds.c +++ b/board/freescale/mpc837xemds/mpc837xemds.c @@ -16,12 +16,9 @@ #include <asm/fsl_serdes.h> #include <spd_sdram.h> #include <tsec.h> -#if defined(CONFIG_OF_LIBFDT) #include <libfdt.h> -#endif -#if defined(CONFIG_PQ_MDS_PIB) +#include <fdt_support.h> #include "../common/pq-mds-pib.h" -#endif int board_early_init_f(void) { @@ -314,6 +311,7 @@ void ft_board_setup(void *blob, bd_t *bd) { ft_cpu_setup(blob, bd); ft_tsec_fixup(blob, bd); + fdt_fixup_dr_usb(blob, bd); #ifdef CONFIG_PCI ft_pci_setup(blob, bd); if (board_pci_host_broken()) |