diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2020-12-08 02:29:11 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-12-09 02:13:27 +0000 |
commit | f46105f099a369b67db38548be01016e4b34d842 (patch) | |
tree | b59acf2eee556970d97c8860a2457d1d530fe38d /src | |
parent | 187f59accba64e9fbfbe10541a832861efd73202 (diff) | |
download | coreboot-f46105f099a369b67db38548be01016e4b34d842.tar.xz |
soc/amd/picasso/southbridge: drop unused sb_enable
Change-Id: I10a16c8f9db994ff33407619a7ab6e453b026b15
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48440
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/picasso/fch.c | 5 | ||||
-rw-r--r-- | src/soc/amd/picasso/include/soc/southbridge.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/soc/amd/picasso/fch.c b/src/soc/amd/picasso/fch.c index 895a379c86..cda509b0a5 100644 --- a/src/soc/amd/picasso/fch.c +++ b/src/soc/amd/picasso/fch.c @@ -95,11 +95,6 @@ void sb_clk_output_48Mhz(void) misc_write32(MISC_CLK_CNTL1, ctrl); } -void sb_enable(struct device *dev) -{ - printk(BIOS_DEBUG, "%s\n", __func__); -} - static void sb_init_acpi_ports(void) { u32 reg; diff --git a/src/soc/amd/picasso/include/soc/southbridge.h b/src/soc/amd/picasso/include/soc/southbridge.h index a74e91f2bc..08e242828b 100644 --- a/src/soc/amd/picasso/include/soc/southbridge.h +++ b/src/soc/amd/picasso/include/soc/southbridge.h @@ -197,7 +197,6 @@ typedef struct aoac_devs { void enable_aoac_devices(void); void wait_for_aoac_enabled(unsigned int dev); void sb_clk_output_48Mhz(void); -void sb_enable(struct device *dev); void southbridge_final(void *chip_info); void southbridge_init(void *chip_info); void fch_pre_init(void); |