diff options
author | Furquan Shaikh <furquan@google.com> | 2018-06-04 17:03:37 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-06-06 00:35:10 +0000 |
commit | e9d3b9c0f6b2b070a4caa28d1f516bad04ebf59a (patch) | |
tree | 10a6c3b231bc38a6393adef35b36bc6628188b9d /src | |
parent | b72ab9e4d7af47749e4f9c27074e782d934848d9 (diff) | |
download | coreboot-e9d3b9c0f6b2b070a4caa28d1f516bad04ebf59a.tar.xz |
soc/intel/apollolake: Fix macro name for GPIO_GPE_NW group 2
Bit 63 is part of GPIO_GPE_NW group 1 and group 2 starts from bit
64. This change corrects macro name to GPIO_GPE_NW_95_64 to reflect
this.
BUG=b:77224247
Change-Id: Ib94617ad102eea5084281f0dda3475e33d3a7833
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/26852
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/apollolake/include/soc/gpio_glk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/apollolake/include/soc/gpio_glk.h b/src/soc/intel/apollolake/include/soc/gpio_glk.h index 63bee3bba9..f1ae49e457 100644 --- a/src/soc/intel/apollolake/include/soc/gpio_glk.h +++ b/src/soc/intel/apollolake/include/soc/gpio_glk.h @@ -266,7 +266,7 @@ #define GPIO_GPE_NW_31_0 0 #define GPIO_GPE_NW_63_32 1 -#define GPIO_GPE_NW_95_63 2 +#define GPIO_GPE_NW_95_64 2 #define GPIO_GPE_N_31_0 4 #define GPIO_GPE_N_63_32 5 #define GPIO_GPE_N_95_64 6 |