diff options
author | Daniel Kurtz <djkurtz@chromium.org> | 2019-01-14 14:56:02 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-01-16 18:18:15 +0000 |
commit | ac1a5a82181c3276963807c4a11ab5edb5eb52f7 (patch) | |
tree | 018a29c5c513467b6eb9f199d25b86111d900600 /src | |
parent | 8d9780f6c2b7017bb20d798ee8c798c627328414 (diff) |
soc/amd/stoneyridge/gpio: Remove redundant definitions
Thes are already defined identically ~20 lines above.
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
BUG=none
BRANCH=none
TEST=compile
Change-Id: Ic3faeb97788b2b524345cdbfb368e98d43bac075
Reviewed-on: https://review.coreboot.org/c/30920
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/stoneyridge/include/soc/gpio.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/soc/amd/stoneyridge/include/soc/gpio.h b/src/soc/amd/stoneyridge/include/soc/gpio.h index 5609ca63c5..04eda4934e 100644 --- a/src/soc/amd/stoneyridge/include/soc/gpio.h +++ b/src/soc/amd/stoneyridge/include/soc/gpio.h @@ -474,11 +474,6 @@ enum { #define GPIO_IN_200mS (13 | GPIO_TIMEBASE_15560uS) #define GPIO_IN_500mS (8 | GPIO_TIMEBASE_62440uS) -#define GPIO_IN_NO_DEBOUNCE (DEBOUNCE_NONE << IN_GLITCH_SHIFT) -#define GPIO_IN_PRESERVE_LOW_GLITCH (GLITCH_LOW << IN_GLITCH_SHIFT) -#define GPIO_IN_PRESERVE_HIGH_GLITCH (GLITCH_HIGH << IN_GLITCH_SHIFT) -#define GPIO_IN_REMOVE_GLITCH (GLITCH_NONE << IN_GLITCH_SHIFT) - #define GPIO_EVENT_INT_STATUS GPIO_INT_STATUS_EN #define GPIO_EVENT_INT_DELIVER GPIO_INT_DELIVERY_EN #define GPIO_EVENT_INT_STATUS_DELIVER (GPIO_INT_STATUS_EN | \ |