summaryrefslogtreecommitdiff
path: root/board/tbs/tbs2910
diff options
context:
space:
mode:
authorSoeren Moch <smoch@web.de>2019-03-01 13:10:56 +0100
committerStefano Babic <sbabic@denx.de>2019-04-13 20:30:09 +0200
commitab3f5efe02cddc74ffd768fdfe8c2d6b31303cc5 (patch)
tree35aee75f2ed3ec016f782f80c29248230b7f61ce /board/tbs/tbs2910
parentf0b427aca6ac502b92f0dc32ac2b99bd6bfea5ae (diff)
board: tbs2910: Convert usb to driver model
So we don't need to duplicate settings from the device tree in the board file. Signed-off-by: Soeren Moch <smoch@web.de>
Diffstat (limited to 'board/tbs/tbs2910')
-rw-r--r--board/tbs/tbs2910/tbs2910.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/board/tbs/tbs2910/tbs2910.c b/board/tbs/tbs2910/tbs2910.c
index 175dd88a69..20c93778e1 100644
--- a/board/tbs/tbs2910/tbs2910.c
+++ b/board/tbs/tbs2910/tbs2910.c
@@ -418,12 +418,6 @@ static const struct boot_mode board_boot_modes[] = {
};
#endif
-#ifdef CONFIG_USB_EHCI_MX6
-static iomux_v3_cfg_t const usb_otg_pads[] = {
- MX6_PAD_ENET_RX_ER__USB_OTG_ID | MUX_PAD_CTRL(NO_PAD_CTRL),
-};
-#endif
-
int board_init(void)
{
/* address of boot parameters */
@@ -443,9 +437,5 @@ int board_init(void)
#ifdef CONFIG_CMD_BMODE
add_board_boot_modes(board_boot_modes);
#endif
-#ifdef CONFIG_USB_EHCI_MX6
- imx_iomux_v3_setup_multiple_pads(
- usb_otg_pads, ARRAY_SIZE(usb_otg_pads));
-#endif
return 0;
}