diff options
author | Marcel Ziswiler <marcel@ziswiler.com> | 2014-10-10 17:04:49 +0200 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2014-10-22 09:30:55 -0700 |
commit | 622162f775eef679ec39357a9eb77df6ad4374c6 (patch) | |
tree | 13d679bcd71609dcfa6838d89b116e88a8eaa09c /board/toradex | |
parent | 1c1786d4c5790892c9349cc761cb410a1852526b (diff) | |
download | u-boot-imx-622162f775eef679ec39357a9eb77df6ad4374c6.zip u-boot-imx-622162f775eef679ec39357a9eb77df6ad4374c6.tar.gz u-boot-imx-622162f775eef679ec39357a9eb77df6ad4374c6.tar.bz2 |
tegra: colibri_t30: asix usb ethernet reset regression
Fix ASIX USB to Ethernet reset which due to the new driver model Tegra
GPIO driver changes now requires a label string to be provided
otherwise the reservation and subsequent direction/value calls will
fail.
This fixes a regression introduced by commit:
2fccd2d96badcdf6165658a99771a4c475586279
tegra: Convert tegra GPIO driver to use driver model
Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/toradex')
-rw-r--r-- | board/toradex/colibri_t30/colibri_t30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/colibri_t30/colibri_t30.c b/board/toradex/colibri_t30/colibri_t30.c index ed043f4..f4bc7d8 100644 --- a/board/toradex/colibri_t30/colibri_t30.c +++ b/board/toradex/colibri_t30/colibri_t30.c @@ -35,7 +35,7 @@ void pinmux_init(void) void pin_mux_usb(void) { /* Reset ASIX using LAN_RESET */ - gpio_request(GPIO_PDD0, NULL); + gpio_request(GPIO_PDD0, "LAN_RESET"); gpio_direction_output(GPIO_PDD0, 0); udelay(5); gpio_set_value(GPIO_PDD0, 1); |