[PATCH 05/11] arch/alpha/pci: make pcibios_claim_one_bus() static

From: Max Kellermann
Date: Mon Mar 11 2024 - 09:24:10 EST


This function is only used within this source file. Fixes
`-Wmissing-prototypes`:

arch/alpha/kernel/pci.c:285:1: error: no previous prototype for 'pcibios_claim_one_bus' [-Werror=missing-prototypes]
285 | pcibios_claim_one_bus(struct pci_bus *b)
| ^~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Max Kellermann <max.kellermann@xxxxxxxxx>
---
arch/alpha/kernel/pci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/alpha/kernel/pci.c b/arch/alpha/kernel/pci.c
index 4458eb7f44f0..71495b1354eb 100644
--- a/arch/alpha/kernel/pci.c
+++ b/arch/alpha/kernel/pci.c
@@ -281,7 +281,7 @@ pcibios_set_master(struct pci_dev *dev)
pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
}

-void __init
+static void __init
pcibios_claim_one_bus(struct pci_bus *b)
{
struct pci_dev *dev;
--
2.39.2