diff options
author | Lean Sheng Tan <lean.sheng.tan@intel.com> | 2021-06-08 21:35:37 -0700 |
---|---|---|
committer | Werner Zeh <werner.zeh@siemens.com> | 2021-06-10 09:53:39 +0000 |
commit | b89832ac6ababcccb1dc6658c40dd72c840ad544 (patch) | |
tree | e50ab030548e6649d987fe7a43109818e10d7aeb | |
parent | 79fcadb3c46bab00c3d819bcf5c1937ccd9a05b0 (diff) |
soc/intel/elkhartlake: Fix gpio_soc_defs.h variable typo
Fix GPIO_COM2_END from GPIO_RSVD_2 to GPIO_RSVD_12.
Signed-off-by: Lean Sheng Tan <lean.sheng.tan@intel.com>
Change-Id: I670f4bec8f141da73428010371754746a455df25
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55334
Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/elkhartlake/include/soc/gpio_soc_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/elkhartlake/include/soc/gpio_soc_defs.h b/src/soc/intel/elkhartlake/include/soc/gpio_soc_defs.h index 5d66170f17..33fcb6bfb7 100644 --- a/src/soc/intel/elkhartlake/include/soc/gpio_soc_defs.h +++ b/src/soc/intel/elkhartlake/include/soc/gpio_soc_defs.h @@ -256,7 +256,7 @@ #define GPIO_RSVD_12 196 #define GPIO_COM2_START GPD0 -#define GPIO_COM2_END GPIO_RSVD_2 +#define GPIO_COM2_END GPIO_RSVD_12 #define NUM_GPIO_COM2_PADS (GPIO_COM2_END - GPIO_COM2_START + 1) /* Group S */ |