From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pf1-x443.google.com ([2607:f8b0:4864:20::443]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1ghSPw-0003N6-UQ for barebox@lists.infradead.org; Thu, 10 Jan 2019 04:58:16 +0000 Received: by mail-pf1-x443.google.com with SMTP id i12so4749694pfo.7 for ; Wed, 09 Jan 2019 20:58:08 -0800 (PST) From: Andrey Smirnov Date: Wed, 9 Jan 2019 20:57:30 -0800 Message-Id: <20190110045739.19399-13-andrew.smirnov@gmail.com> In-Reply-To: <20190110045739.19399-1-andrew.smirnov@gmail.com> References: <20190110045739.19399-1-andrew.smirnov@gmail.com> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 12/21] PCI: Make pci_scan_bus static To: barebox@lists.infradead.org Cc: Andrey Smirnov Pci_scan_bus is not used anyhwere outside pci.c. Mark in static to reflect that. No functional change intended. Signed-off-by: Andrey Smirnov --- drivers/pci/pci.c | 4 +++- include/linux/pci.h | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 9bfa54d054..23306be506 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -4,6 +4,8 @@ #include #include +static unsigned int pci_scan_bus(struct pci_bus *bus); + LIST_HEAD(pci_root_buses); EXPORT_SYMBOL(pci_root_buses); static resource_size_t last[PCI_BRIDGE_RESOURCE_NUM]; @@ -334,7 +336,7 @@ pci_of_match_device(struct device_d *parent, unsigned int devfn) return NULL; } -unsigned int pci_scan_bus(struct pci_bus *bus) +static unsigned int pci_scan_bus(struct pci_bus *bus) { struct pci_dev *dev; struct pci_bus *child_bus; diff --git a/include/linux/pci.h b/include/linux/pci.h index 82f27f21b2..c8f91cdd96 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -251,7 +251,6 @@ int pci_register_device(struct pci_dev *pdev); extern struct list_head pci_root_buses; /* list of all known PCI buses */ -extern unsigned int pci_scan_bus(struct pci_bus *bus); extern void register_pci_controller(struct pci_controller *hose); int pci_bus_read_config_byte(struct pci_bus *bus, unsigned int devfn, -- 2.20.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox