diff options
author | Tim Harvey <tharvey@gateworks.com> | 2016-05-24 11:03:54 -0700 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-05-31 17:25:16 +0200 |
commit | 83e00f193e766337254c490c2b28118b75cc575a (patch) | |
tree | e64b8ed5d0a21ce20ea1650e7989062bf18a8faa /board | |
parent | 78532623303e089e7d36b3a11d293e618b927655 (diff) | |
download | u-boot-imx-83e00f193e766337254c490c2b28118b75cc575a.zip u-boot-imx-83e00f193e766337254c490c2b28118b75cc575a.tar.gz u-boot-imx-83e00f193e766337254c490c2b28118b75cc575a.tar.bz2 |
imx: ventana: fix invalid dio configuration for pwm mode
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/gateworks/gw_ventana/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/gateworks/gw_ventana/common.c b/board/gateworks/gw_ventana/common.c index a20190e..7610381 100644 --- a/board/gateworks/gw_ventana/common.c +++ b/board/gateworks/gw_ventana/common.c @@ -760,7 +760,7 @@ void setup_board_gpio(int board, struct ventana_board_info *info) ctrl); gpio_requestf(cfg->gpio_param, "dio%d", i); gpio_direction_input(cfg->gpio_param); - } else if (hwconfig_subarg_cmp("dio2", "mode", "pwm") && + } else if (hwconfig_subarg_cmp(arg, "mode", "pwm") && cfg->pwm_padmux) { if (!quiet) printf("DIO%d: pwm%d\n", i, cfg->pwm_param); |