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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60772
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
This commit is contained in:
Subrata Banik 2022-01-04 19:49:24 +00:00
parent 90c6cff159
commit 0dc0772118
2 changed files with 3 additions and 3 deletions

View File

@ -500,7 +500,7 @@ int gpio_lock_pads(const struct gpio_lock_config *pad_list, const size_t count)
for (int x = 0; x < count; x++) { for (int x = 0; x < count; x++) {
int err; int err;
pad = pad_list[x].gpio; pad = pad_list[x].pad;
action = pad_list[x].action; action = pad_list[x].action;
if (!(action & GPIO_LOCK_FULL)) { if (!(action & GPIO_LOCK_FULL)) {
@ -555,7 +555,7 @@ int gpio_lock_pads(const struct gpio_lock_config *pad_list, const size_t count)
int gpio_lock_pad(const gpio_t pad, enum gpio_lock_action action) int gpio_lock_pad(const gpio_t pad, enum gpio_lock_action action)
{ {
const struct gpio_lock_config pads = { const struct gpio_lock_config pads = {
.gpio = pad, .pad = pad,
.action = action .action = action
}; };

View File

@ -206,7 +206,7 @@ enum gpio_lock_action {
}; };
struct gpio_lock_config { struct gpio_lock_config {
gpio_t gpio; gpio_t pad;
enum gpio_lock_action action; enum gpio_lock_action action;
}; };