diff options
author | Kan Yan <kyan@google.com> | 2016-09-22 18:59:18 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-10-07 17:55:19 +0200 |
commit | 509c4c409c1ee272206f3369e42cd1ba4e1cc8d0 (patch) | |
tree | 06300c70aab9aa71f76574fd30c6d173aa8c2870 /src/soc/qualcomm/ipq40xx | |
parent | 5ddecdcf328fceb75a49d6ae5229b8d01702393d (diff) |
soc/qualcomm/ipq40xx: Fix GPIO pull up config.
BUG=b:31690391
TEST=Tested with board ID
BRANCH=none
Change-Id: I9a2b7eec111a79827f72a506942a8ec833ba7e60
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: f23e2b6e72491aaafa15774f9bded3e14363abbc
Original-Change-Id: I23183db29d7f7dd812e94ab6a1f2f1329c46ac60
Original-Signed-off-by: Kan Yan <kyan@google.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/388778
Original-Commit-Ready: Suresh Rajashekara <sureshraj@chromium.org>
Original-Reviewed-by: Suresh Rajashekara <sureshraj@chromium.org>
Reviewed-on: https://review.coreboot.org/16770
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/qualcomm/ipq40xx')
-rw-r--r-- | src/soc/qualcomm/ipq40xx/include/soc/gpio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/qualcomm/ipq40xx/include/soc/gpio.h b/src/soc/qualcomm/ipq40xx/include/soc/gpio.h index 3f9c385ea4..220ea934cc 100644 --- a/src/soc/qualcomm/ipq40xx/include/soc/gpio.h +++ b/src/soc/qualcomm/ipq40xx/include/soc/gpio.h @@ -48,8 +48,7 @@ /* GPIO TLMM: Pullup/Pulldown */ #define GPIO_NO_PULL 0 #define GPIO_PULL_DOWN 1 -#define GPIO_KEEPER 2 -#define GPIO_PULL_UP 3 +#define GPIO_PULL_UP 2 /* GPIO TLMM: Drive Strength */ #define GPIO_2MA 0 |