diff options
author | Tom Rini <trini@konsulko.com> | 2016-06-03 16:30:47 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-03 16:30:47 -0400 |
commit | f15715afea3e7b576fad1f6877a073b65576a335 (patch) | |
tree | a0f1303e1410318d293739a71a79fba6d5c099a3 /board/toradex/colibri_t20/colibri_t20.c | |
parent | b2f1858455e99a91aeafe59ac73c6c047106d5e8 (diff) | |
parent | 10a03382f0f8e774e58df7143e1a8ea52903ae1f (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-tegra
Diffstat (limited to 'board/toradex/colibri_t20/colibri_t20.c')
-rw-r--r-- | board/toradex/colibri_t20/colibri_t20.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/toradex/colibri_t20/colibri_t20.c b/board/toradex/colibri_t20/colibri_t20.c index 879f25a538..68fbf49579 100644 --- a/board/toradex/colibri_t20/colibri_t20.c +++ b/board/toradex/colibri_t20/colibri_t20.c @@ -103,11 +103,11 @@ void pin_mux_usb(void) pinmux_tristate_disable(PMUX_PINGRP_DTE); /* Reset ASIX using LAN_RESET */ - gpio_request(GPIO_PV4, "LAN_RESET"); - gpio_direction_output(GPIO_PV4, 0); + gpio_request(TEGRA_GPIO(V, 4), "LAN_RESET"); + gpio_direction_output(TEGRA_GPIO(V, 4), 0); pinmux_tristate_disable(PMUX_PINGRP_GPV); udelay(5); - gpio_set_value(GPIO_PV4, 1); + gpio_set_value(TEGRA_GPIO(V, 4), 1); /* USBH_PEN: USB 1 aka Tegra USB port 3 VBus */ pinmux_tristate_disable(PMUX_PINGRP_SPIG); |