diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-10-05 21:50:23 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-13 19:42:36 +0000 |
commit | 987ec8837ac8c5288a92af52c9bdd51f9019db3c (patch) | |
tree | 3f7c98f70392e8d544c00bdd0e2da57e4c4e39a9 /src/soc/amd/common | |
parent | 6e1fb6ae9f0cc2b37d2cbd127e0723789b0f7f3e (diff) |
soc/amd/acp: Hook up ops in devicetree
This removes the need for a PCI driver.
Change-Id: Id25016703d1716930d9b6c6d1dab5481b10aca17
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68145
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/acp/acp.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/soc/amd/common/block/acp/acp.c b/src/soc/amd/common/block/acp/acp.c index cf0e9f8fe2..a43792eea7 100644 --- a/src/soc/amd/common/block/acp/acp.c +++ b/src/soc/amd/common/block/acp/acp.c @@ -7,7 +7,6 @@ #include <amdblocks/chip.h> #include <device/device.h> #include <device/pci.h> -#include <device/pci_ids.h> #include <device/pci_ops.h> #include <commonlib/helpers.h> #include "acp_def.h" @@ -42,7 +41,7 @@ static void acp_fill_ssdt(const struct device *dev) acp_fill_wov_method(dev); } -static struct device_operations acp_ops = { +struct device_operations amd_acp_ops = { .read_resources = pci_dev_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, @@ -52,9 +51,3 @@ static struct device_operations acp_ops = { .acpi_name = acp_acpi_name, .acpi_fill_ssdt = acp_fill_ssdt, }; - -static const struct pci_driver acp_driver __pci_driver = { - .ops = &acp_ops, - .vendor = PCI_VID_AMD, - .device = PCI_DID_AMD_FAM17H_ACP, -}; |