mb/google/brya: Remove `mb_gpio_lock_config()` override function

This patch removes `lockable_brya_gpios` lists and
`mb_gpio_lock_config` override function from brya baseboard directory as
the variant GPIO pad configuration table is now capable of locking GPIO
PADs.

BUG=b:208827718
TEST=Able to built and boot brya.

Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: Ifc7354f2ae3817459b5494d572c603eba48ec66a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61503
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-31 17:56:59 +05:30
parent fedc5427fd
commit 2ad24833d9
1 changed files with 0 additions and 9 deletions

View File

@ -456,12 +456,3 @@ const struct pad_config *__weak variant_romstage_gpio_table(size_t *num)
*num = 0;
return NULL;
}
static struct gpio_lock_config lockable_brya_gpios[] = {
};
const struct gpio_lock_config *mb_gpio_lock_config(size_t *num)
{
*num = ARRAY_SIZE(lockable_brya_gpios);
return lockable_brya_gpios;
}