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>
This commit is contained in:
parent
8aa9edfa4e
commit
74ace5cd3a
|
@ -33,15 +33,6 @@ static const char *soc_acpi_name(const struct device *dev)
|
||||||
if (dev->path.type != DEVICE_PATH_PCI)
|
if (dev->path.type != DEVICE_PATH_PCI)
|
||||||
return NULL;
|
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",
|
printk(BIOS_WARNING, "Unknown PCI device: dev: %d, fn: %d\n",
|
||||||
PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
|
PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue