summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/chip.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-02-17 00:17:01 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-02-18 01:15:32 +0000
commit74ace5cd3a0dd6ea3e25923359decc80fab6e16f (patch)
tree1b821e61d831ce91a1515eb00a259ff73867c2c3 /src/soc/amd/picasso/chip.c
parent8aa9edfa4e01c5cc8066de7ae27056dcce82dae4 (diff)
downloadcoreboot-74ace5cd3a0dd6ea3e25923359decc80fab6e16f.tar.gz
coreboot-74ace5cd3a0dd6ea3e25923359decc80fab6e16f.tar.bz2
coreboot-74ace5cd3a0dd6ea3e25923359decc80fab6e16f.zip
soc/amd/picasso/chip: remove unneeded functionality in soc_acpi_name
Now that all ACPI names are moved to the corresponding PCI devices, the functionality in the chip code isn't needed any more. TEST=No warnings or errors on coreboot console or in the Linux ACPI parser. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I2d39b6d4bd53cd0ca189fb6f55ca26dab68793fc Reviewed-on: https://review.coreboot.org/c/coreboot/+/50822 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/chip.c')
-rw-r--r--src/soc/amd/picasso/chip.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c
index eec5124bcade..9f9ca2496832 100644
--- a/src/soc/amd/picasso/chip.c
+++ b/src/soc/amd/picasso/chip.c
@@ -33,15 +33,6 @@ static const char *soc_acpi_name(const struct device *dev)
if (dev->path.type != DEVICE_PATH_PCI)
return NULL;
- if (dev->bus->dev->path.type == DEVICE_PATH_DOMAIN) {
- switch (dev->path.pci.devfn) {
- default:
- printk(BIOS_WARNING, "Unknown root PCI device: dev: %d, fn: %d\n",
- PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
- return NULL;
- }
- }
-
printk(BIOS_WARNING, "Unknown PCI device: dev: %d, fn: %d\n",
PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
return NULL;