From d40a4c2bb4d237c174ef11ad73afc5a67ed555e7 Mon Sep 17 00:00:00 2001 From: Tim Wawrzynczak Date: Thu, 25 Feb 2021 13:14:49 -0700 Subject: acpi: Move PCI functions to separate file Signed-off-by: Tim Wawrzynczak Change-Id: Idc96b99da9f9037267c0bec2c839014b13ceb8cc Reviewed-on: https://review.coreboot.org/c/coreboot/+/51106 Reviewed-by: Furquan Shaikh Reviewed-by: Lance Zhao Tested-by: build bot (Jenkins) --- src/acpi/acpigen.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/acpi/acpigen.c') diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index 4d9395fab7..b3e112d800 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -18,8 +18,6 @@ #include #include #include -#include -#include #include #include @@ -2033,23 +2031,6 @@ void acpigen_write_ADR(uint64_t adr) acpigen_write_name_qword("_ADR", adr); } -void acpigen_write_ADR_pci_devfn(pci_devfn_t devfn) -{ - /* - * _ADR for PCI Bus is encoded as follows: - * [63:32] - unused - * [31:16] - device # - * [15:0] - function # - */ - acpigen_write_ADR(PCI_SLOT(devfn) << 16 | PCI_FUNC(devfn)); -} - -void acpigen_write_ADR_pci_device(const struct device *dev) -{ - assert(dev->path.type == DEVICE_PATH_PCI); - acpigen_write_ADR_pci_devfn(dev->path.pci.devfn); -} - /** * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding. * @address: SoundWire device address properties. -- cgit v1.2.3