diff options
author | Stephen Warren <swarren@nvidia.com> | 2016-05-12 12:07:39 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2016-05-31 09:53:56 -0700 |
commit | 01a97a11db75c1a006da7b40d8ba4a325f05960c (patch) | |
tree | f2c49594d96073ee1f2020edc037f520805c4607 /board/nvidia/p2571/p2571.c | |
parent | da6e2fab5db000e31187aa4c9495c244011792c1 (diff) | |
download | u-boot-01a97a11db75c1a006da7b40d8ba4a325f05960c.tar.gz |
ARM: tegra: use DT bindings for GPIO naming
There are currently many places that define the list of all Tegra GPIOs;
the DT binding header and custom Tegra-specific header file gpio.h. Fix
the redundancy by replacing everything with the DT binding header file.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/nvidia/p2571/p2571.c')
-rw-r--r-- | board/nvidia/p2571/p2571.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/nvidia/p2571/p2571.c b/board/nvidia/p2571/p2571.c index d80a7d0d3e..7ce656f51a 100644 --- a/board/nvidia/p2571/p2571.c +++ b/board/nvidia/p2571/p2571.c @@ -58,6 +58,6 @@ void pinmux_init(void) void start_cpu_fan(void) { /* GPIO_PE4 is PS_VDD_FAN_ENABLE */ - gpio_request(GPIO_PE4, "FAN_VDD"); - gpio_direction_output(GPIO_PE4, 1); + gpio_request(TEGRA_GPIO(E, 4), "FAN_VDD"); + gpio_direction_output(TEGRA_GPIO(E, 4), 1); } |