summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/fch.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-07-22 17:34:28 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-07-23 18:03:04 +0000
commita754aa6d29f2078cffac6559a9efca6f9ce862ac (patch)
tree48edff2ed17be4ee3d5f2237108d51bbab2bceed /src/soc/amd/picasso/fch.c
parent12184db008736c7d0c9fc7f03a872bef6cd7feab (diff)
downloadcoreboot-a754aa6d29f2078cffac6559a9efca6f9ce862ac.tar.gz
coreboot-a754aa6d29f2078cffac6559a9efca6f9ce862ac.tar.bz2
coreboot-a754aa6d29f2078cffac6559a9efca6f9ce862ac.zip
soc/amd/picasso/fch: make sb_clk_output_48Mhz static
sb_clk_output_48Mhz is only used in fch.c where it is also implemented, so no need to have it visible outside of that compilation unit. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I2b0d10ff26bdf54ea791aa66bf400578466d54cf Reviewed-on: https://review.coreboot.org/c/coreboot/+/56525 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/fch.c')
-rw-r--r--src/soc/amd/picasso/fch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/fch.c b/src/soc/amd/picasso/fch.c
index dcae1adff689..58a5ce916543 100644
--- a/src/soc/amd/picasso/fch.c
+++ b/src/soc/amd/picasso/fch.c
@@ -86,7 +86,7 @@ const struct irq_idx_name *sb_get_apic_reg_association(size_t *size)
return irq_association;
}
-void sb_clk_output_48Mhz(void)
+static void sb_clk_output_48Mhz(void)
{
u32 ctrl;
const struct soc_amd_picasso_config *cfg = config_of_soc();