soc/intel/common/gpio: Modify pad_config.pad type from `int` to 'gpio_t'

This patch modifies struct pad_config.pad type from `int` to 'gpio_t'
as pad offset inside GPIO community is unsigned type and also to
maintain parity with `struct gpio_lock_config.pad` type.

Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: I15da8a1aff2d81805ba6584f5cc7e569faf456e1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60773
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:58:18 +00:00
parent 0dc0772118
commit d43d864fc0
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@
typedef uint32_t gpio_t;
struct pad_config {
int pad;/* offset of pad within community */
gpio_t pad;/* offset of pad within community */
uint32_t pad_config[GPIO_NUM_PAD_CFG_REGS];/*
Pad config data corresponding to DW0, DW1,.... */
};