summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/chip.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2020-12-05 01:29:38 +0100
committerFelix Held <felix-coreboot@felixheld.de>2020-12-06 19:03:40 +0000
commit0f058f68a24643acfca7fb5825ddbab19ff732c3 (patch)
treee34356bf428236b24ef6c0e631d411b0b2639269 /src/soc/amd/picasso/chip.c
parent49f6b9d05b433d96acd0cf4e90ac1782d875d537 (diff)
downloadcoreboot-0f058f68a24643acfca7fb5825ddbab19ff732c3.tar.gz
coreboot-0f058f68a24643acfca7fb5825ddbab19ff732c3.tar.bz2
coreboot-0f058f68a24643acfca7fb5825ddbab19ff732c3.zip
soc/amd/picasso/chip.h: remove unneeded extern pci_domain_ops
Now pci_domain_ops in chip.c can also be marked as static. Change-Id: Ia92b778a5882d991b391dc29aeee0a5615677913 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48315 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c
index 83845416a428..d31e94a27721 100644
--- a/src/soc/amd/picasso/chip.c
+++ b/src/soc/amd/picasso/chip.c
@@ -55,7 +55,7 @@ const char *soc_acpi_name(const struct device *dev)
return NULL;
};
-struct device_operations pci_domain_ops = {
+static struct device_operations pci_domain_ops = {
.read_resources = pci_domain_read_resources,
.set_resources = pci_domain_set_resources,
.scan_bus = pci_domain_scan_bus,