diff options
author | Felix Held <felix.held@amd.corp-partner.google.com> | 2021-10-14 21:35:55 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-10-15 20:04:28 +0000 |
commit | f38fbbec2c0061d122466cec346c2634aa26e236 (patch) | |
tree | 772c5e1517b85b955c3a1cf8c039216ea3b8480e /src/soc/amd/common | |
parent | 640ec2581b1cdbb9dca385b49a32d2bdb1d4d9c5 (diff) |
soc/amd/common/include/espi: rename configure_espi
Rename configure_espi to configure_espi_with_mb_hook to clarify that
this function will call into the mb_set_up_early_espi function in the
mainboard-specific code if it exists.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I5d0f099288b0100242629c736dd69a8add977b5b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58338
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/espi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/espi.h b/src/soc/amd/common/block/include/amdblocks/espi.h index 7e49ea0f2e..0f8066b2a6 100644 --- a/src/soc/amd/common/block/include/amdblocks/espi.h +++ b/src/soc/amd/common/block/include/amdblocks/espi.h @@ -132,7 +132,7 @@ int espi_setup(void); void mb_set_up_early_espi(void); /* Setup eSPI with any mainboard specific initialization. */ -static inline void configure_espi(void) +static inline void configure_espi_with_mb_hook(void) { /* If eSPI is setup in PSP Verstage, continue with that. Else setup eSPI to perform port80h routing as early as possible. */ |