mb/google/guybrush: rename baseboard GPIO table getter for clarity
Rename variant_pcie_gpio_table() to baseboard_pcie_gpio_table(), since the GPIO table comes from the baseboard and is overridden by a separate table from the variant. Drop the __weak qualifier as this function is not overridden. This is similar to the change made for skyrim in CB:67809 Change-Id: I14c79fad04f18d874ce6ff7e572bb237445db8b1 Signed-off-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69176 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
parent
cf886b54ef
commit
624aa04ed6
|
@ -9,7 +9,7 @@ void mb_pre_fspm(void)
|
|||
const struct soc_amd_gpio *base_gpios, *override_gpios;
|
||||
|
||||
/* Initialize PCIe reset. */
|
||||
base_gpios = variant_pcie_gpio_table(&base_num_gpios);
|
||||
base_gpios = baseboard_pcie_gpio_table(&base_num_gpios);
|
||||
override_gpios = variant_pcie_override_gpio_table(&override_num_gpios);
|
||||
|
||||
gpio_configure_pads_with_override(base_gpios, base_num_gpios,
|
||||
|
|
|
@ -286,7 +286,7 @@ static const struct soc_amd_gpio pcie_gpio_table[] = {
|
|||
PAD_NFO(GPIO_26, PCIE_RST_L, HIGH),
|
||||
};
|
||||
|
||||
const struct soc_amd_gpio *__weak variant_pcie_gpio_table(size_t *size)
|
||||
const struct soc_amd_gpio *baseboard_pcie_gpio_table(size_t *size)
|
||||
{
|
||||
*size = ARRAY_SIZE(pcie_gpio_table);
|
||||
return pcie_gpio_table;
|
||||
|
|
|
@ -30,7 +30,7 @@ const struct soc_amd_gpio *variant_early_gpio_table(size_t *size);
|
|||
const struct soc_amd_gpio *variant_bootblock_gpio_table(size_t *size);
|
||||
|
||||
/* This function provides GPIO settings before PCIe enumeration. */
|
||||
const struct soc_amd_gpio *variant_pcie_gpio_table(size_t *size);
|
||||
const struct soc_amd_gpio *baseboard_pcie_gpio_table(size_t *size);
|
||||
|
||||
/* This function provides GPIO settings for eSPI bus. */
|
||||
const struct soc_amd_gpio *variant_espi_gpio_table(size_t *size);
|
||||
|
|
Loading…
Reference in New Issue