summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/chip.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-05-31 09:21:07 +0300
committerFelix Held <felix-coreboot@felixheld.de>2020-06-03 17:44:04 +0000
commit79e12abb1bdf9e25e23d6b7313f087fae81e5a60 (patch)
treed08f732b47d1f75808313441e8f8ac14e31eff40 /src/soc/amd/picasso/chip.c
parent0ef6562656acd04125fb2b8484d44277f173b1b0 (diff)
downloadcoreboot-79e12abb1bdf9e25e23d6b7313f087fae81e5a60.tar.gz
coreboot-79e12abb1bdf9e25e23d6b7313f087fae81e5a60.tar.bz2
coreboot-79e12abb1bdf9e25e23d6b7313f087fae81e5a60.zip
soc/amd: Use mp_cpu_bus_init()
Change-Id: Ia4508a9a087e3996ef7667280f8e2788421e5700 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41952 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/picasso/chip.c')
-rw-r--r--src/soc/amd/picasso/chip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c
index 7c6e6fb9678c..dc661d2be377 100644
--- a/src/soc/amd/picasso/chip.c
+++ b/src/soc/amd/picasso/chip.c
@@ -20,7 +20,7 @@ extern const char *i2c_acpi_name(const struct device *dev);
struct device_operations cpu_bus_ops = {
.read_resources = noop_read_resources,
.set_resources = noop_set_resources,
- .init = picasso_init_cpus,
+ .init = mp_cpu_bus_init,
.acpi_fill_ssdt = generate_cpu_entries,
};