diff options
author | ramneek mehresh <ramneek.mehresh@freescale.com> | 2012-04-18 19:39:53 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-07-06 17:03:25 -0500 |
commit | 3d7506fa380c2c3757947871a2ba4bd6401d8387 (patch) | |
tree | 31326bbba80e5f31968fdcb995a24bce0096ed6d /board/freescale/mpc8536ds | |
parent | 558cd995d6d3eaa94fb342d142289a1fa2f76ba3 (diff) | |
download | u-boot-imx-3d7506fa380c2c3757947871a2ba4bd6401d8387.zip u-boot-imx-3d7506fa380c2c3757947871a2ba4bd6401d8387.tar.gz u-boot-imx-3d7506fa380c2c3757947871a2ba4bd6401d8387.tar.bz2 |
powerpc/85xx: Add USB device-tree fixup for various platforms
Add USB device-tree fixup for following platforms:
MPC8536DS, P1022DS, P1023RDS, P2020COME, P2020DS, P2041RDB, P3060QDS
Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
Diffstat (limited to 'board/freescale/mpc8536ds')
-rw-r--r-- | board/freescale/mpc8536ds/mpc8536ds.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/board/freescale/mpc8536ds/mpc8536ds.c b/board/freescale/mpc8536ds/mpc8536ds.c index 6d0bfde..7898708 100644 --- a/board/freescale/mpc8536ds/mpc8536ds.c +++ b/board/freescale/mpc8536ds/mpc8536ds.c @@ -1,5 +1,5 @@ /* - * Copyright 2008-2010, 2011 Freescale Semiconductor, Inc. + * Copyright 2008-2012 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. @@ -290,5 +290,10 @@ void ft_board_setup(void *blob, bd_t *bd) #ifdef CONFIG_FSL_SGMII_RISER fsl_sgmii_riser_fdt_fixup(blob); #endif + +#ifdef CONFIG_HAS_FSL_MPH_USB + fdt_fixup_dr_usb(blob, bd); +#endif + } #endif |