aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/cfg_util.c
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2020-04-06 23:36:24 +0200
committerFelix Held <felix-coreboot@felixheld.de>2020-04-08 21:45:11 +0000
commit00058f513e8a5005d566a927eca183d2123d3e19 (patch)
treeb9833b148644437e2f47295cb05b48a6bf607fd4 /src/soc/amd/picasso/cfg_util.c
parent72e987d540e9eb8f9b50454be880c3aa4a5bff51 (diff)
soc/amd/picasso: replace get_soc_config with config_of_soc
get_soc_config was a reimplementation of config_of_soc, so drop get_soc_config and cfg_util.c. Change-Id: I007c83cfe5063130c18819925844b6c643cf0232 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40246 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/amd/picasso/cfg_util.c')
-rw-r--r--src/soc/amd/picasso/cfg_util.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/soc/amd/picasso/cfg_util.c b/src/soc/amd/picasso/cfg_util.c
deleted file mode 100644
index b0b06522da..0000000000
--- a/src/soc/amd/picasso/cfg_util.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-/* This file is part of the coreboot project. */
-
-#include <console/console.h>
-#include <device/device.h>
-#include <soc/pci_devs.h>
-#include "chip.h"
-
-const config_t *get_soc_config(void)
-{
- const struct device *dev = pcidev_path_on_root(GNB_DEVFN);
-
- if (!dev || !dev->chip_info) {
- printk(BIOS_ERR, "%s: Could not find SoC devicetree config!\n",
- __func__);
- return NULL;
- }
-
- return dev->chip_info;
-}