mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-04-04 06:46:11 +00:00
dm: tegra: usb: Move USB to driver model
Somehow this change was dropped in the various merges. I noticed when I came to turn off the non-driver-model support for Tegra. We need to make this change (and deal with any problems) before going further. Change-Id: Ib9389a0d41008014eb0df0df98c27be65bc79ce6 Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
a2879764ba
commit
534f9d3fef
2 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,9 @@ config SYS_MALLOC_F_LEN
|
||||||
config USE_PRIVATE_LIBGCC
|
config USE_PRIVATE_LIBGCC
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config DM_USB
|
||||||
|
default y
|
||||||
|
|
||||||
config SPL_DM
|
config SPL_DM
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
|
|
@ -161,8 +161,10 @@ int board_init(void)
|
||||||
|
|
||||||
#ifdef CONFIG_USB_EHCI_TEGRA
|
#ifdef CONFIG_USB_EHCI_TEGRA
|
||||||
pin_mux_usb();
|
pin_mux_usb();
|
||||||
|
# ifndef CONFIG_DM_USB
|
||||||
usb_process_devicetree(gd->fdt_blob);
|
usb_process_devicetree(gd->fdt_blob);
|
||||||
# endif
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_LCD
|
#ifdef CONFIG_LCD
|
||||||
board_id = tegra_board_id();
|
board_id = tegra_board_id();
|
||||||
|
|
Loading…
Add table
Reference in a new issue