Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60772 )
Change subject: soc/intel/common/gpio: Rename struct gpio_lock_config.gpio to .pad ......................................................................
soc/intel/common/gpio: Rename struct gpio_lock_config.gpio to .pad
This patch renames struct gpio_lock_config variable `gpio` to `pad`, to represent the pad offset within the GPIO community.
Signed-off-by: Subrata Banik subratabanik@google.com Change-Id: I6bed99c401435c96c9543f99406a934d7141c575 --- M src/soc/intel/common/block/gpio/gpio.c M src/soc/intel/common/block/include/intelblocks/gpio.h 2 files changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/60772/1
diff --git a/src/soc/intel/common/block/gpio/gpio.c b/src/soc/intel/common/block/gpio/gpio.c index ce23a2e..419c77e 100644 --- a/src/soc/intel/common/block/gpio/gpio.c +++ b/src/soc/intel/common/block/gpio/gpio.c @@ -500,7 +500,7 @@ for (int x = 0; x < count; x++) { int err;
- pad = pad_list[x].gpio; + pad = pad_list[x].pad; action = pad_list[x].action;
if (!(action & GPIO_LOCK_FULL)) { @@ -555,7 +555,7 @@ int gpio_lock_pad(const gpio_t pad, enum gpio_lock_action action) { const struct gpio_lock_config pads = { - .gpio = pad, + .pad = pad, .action = action };
diff --git a/src/soc/intel/common/block/include/intelblocks/gpio.h b/src/soc/intel/common/block/include/intelblocks/gpio.h index 91f9abe..995c786 100644 --- a/src/soc/intel/common/block/include/intelblocks/gpio.h +++ b/src/soc/intel/common/block/include/intelblocks/gpio.h @@ -206,7 +206,7 @@ };
struct gpio_lock_config { - gpio_t gpio; + gpio_t pad; enum gpio_lock_action action; };