From 78d14326987547f7ae8b2a5b200cb1f3fba0fb31 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Wed, 23 Jan 2019 15:57:49 +0200 Subject: device/pci_ops: Drop parameter from pci_bus_default_ops() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A default is a build-time static value, fallback. Return value does not depend of input parameter. Change-Id: I43ae28f465fb46391519ec97a2a50891d458c46d Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/31679 Reviewed-by: Felix Held Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/arch/x86/pci_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch') diff --git a/src/arch/x86/pci_ops.c b/src/arch/x86/pci_ops.c index 82f9fd2644..f30bffe320 100644 --- a/src/arch/x86/pci_ops.c +++ b/src/arch/x86/pci_ops.c @@ -16,7 +16,7 @@ #include #include -const struct pci_bus_operations *pci_bus_default_ops(struct device *dev) +const struct pci_bus_operations *pci_bus_default_ops(void) { return &pci_cf8_conf1; } -- cgit v1.2.3