Received: by 10.192.165.148 with SMTP id m20csp3414327imm; Sun, 29 Apr 2018 22:52:33 -0700 (PDT) X-Google-Smtp-Source: AB8JxZriWbgAswQBkOfBi/2AZO489qtXaO1oZ4tygxpzzzxQxYTewks+OxgTVXeRIID0I9dFsafo X-Received: by 2002:a63:458:: with SMTP id 85-v6mr9253018pge.156.1525067553405; Sun, 29 Apr 2018 22:52:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1525067553; cv=none; d=google.com; s=arc-20160816; b=mvgAy6K6ZabZstptqq4ehClpl17iCpr1O+qi3qoNGlGdoMEe7smzkIrK8gIpd5TinU iwvGgujBuuhs8xAnbfrsfE5V74kB7Vp/jkwrZQpkjs7exnpRcQ6dbMMPb18oPaUbyTLa ltcrqHivKejXgWNlHwxydTRMsU/q1kpBYVtvjg/3IMIL2PPq8kGCri4c779oGE4h2Tdz ozBOnLbsnri6sjDu8kAWR1gEWNj2gitAkceiSpic0QwPUg46MpqvmCfYtHVXv52HHLPF ah7jlw4jAybW4dscFoFUHkZj+LLNzPvxsI02LCgLzxUSPjE0zyhPtuAid9qjng5suYPd 7J6Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:references :in-reply-to:message-id:date:subject:to:from :arc-authentication-results; bh=tUrBkb4Y7xel8yDg/bV01YY+u0DEnqYE+InzrntDxZ4=; b=opupV4R516E0QsH1SGBp20WTnYbkLTwiTXvYiTp33scBmq9Lqh+O4luUPPftUkdpMx 7rdi2t1wwJI+nlRZcR4sxh7WcGl1dYO6mXsQHgZB+mDzk7f50Ux3eZa/0S1vaxTEB/vg rfHKXdOFgPRqhNQUMJdGx//ybU3Mz0Oz1vNPGavJ3kexLm6Xrpmf0KizeMajqZ0rOq9T z+ihHrG/4vD1hJRY12N8rvoGlZJB4SHCjqbCSIquxUf5nG3e9EhqWF9WbsMLyR4X3ExA voDdcj+7GitVddGauezxClVCGMRoGlyaD2rERRI/eR0avYACyOanaoEhB2I1/4F9OG+L lWOA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w10si6932356pfg.174.2018.04.29.22.52.19; Sun, 29 Apr 2018 22:52:33 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751631AbeD3FtL (ORCPT + 99 others); Mon, 30 Apr 2018 01:49:11 -0400 Received: from thoth.sbs.de ([192.35.17.2]:41312 "EHLO thoth.sbs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751569AbeD3FtJ (ORCPT ); Mon, 30 Apr 2018 01:49:09 -0400 Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id w3U5mkFW012451 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 30 Apr 2018 07:48:46 +0200 Received: from md1f2u6c.ww002.siemens.net ([167.87.54.87]) by mail3.siemens.de (8.15.2/8.15.2) with ESMTP id w3U5mj6r003250; Mon, 30 Apr 2018 07:48:46 +0200 From: Jan Kiszka To: Bjorn Helgaas , Linux Kernel Mailing List , linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 01/10] PCI: Make pci_get_new_domain_nr() static Date: Mon, 30 Apr 2018 07:48:35 +0200 Message-Id: <7e10d1bd6ca988c9deca593588e5b7fdd72a8de4.1525067324.git.jan.kiszka@siemens.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jan Kiszka The only user of pci_get_new_domain_nr() is of_pci_bus_find_domain_nr(). Since they are defined in the same compilation unit, pci_get_new_domain_nr() can be made static, which also simplifies preprocessor conditionals. No functional change intended. Signed-off-by: Jan Kiszka Acked-by: Lorenzo Pieralisi --- drivers/pci/pci.c | 6 ++---- include/linux/pci.h | 3 --- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index a04197ce767d..811d71e7ee05 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -5702,15 +5702,14 @@ static void pci_no_domains(void) #endif } -#ifdef CONFIG_PCI_DOMAINS +#ifdef CONFIG_PCI_DOMAINS_GENERIC static atomic_t __domain_nr = ATOMIC_INIT(-1); -int pci_get_new_domain_nr(void) +static int pci_get_new_domain_nr(void) { return atomic_inc_return(&__domain_nr); } -#ifdef CONFIG_PCI_DOMAINS_GENERIC static int of_pci_bus_find_domain_nr(struct device *parent) { static int use_dt_domains = -1; @@ -5765,7 +5764,6 @@ int pci_bus_find_domain_nr(struct pci_bus *bus, struct device *parent) acpi_pci_bus_find_domain_nr(bus); } #endif -#endif /** * pci_ext_cfg_avail - can we access extended PCI config space? diff --git a/include/linux/pci.h b/include/linux/pci.h index 73178a2fcee0..963232a6cd2e 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1510,12 +1510,10 @@ void pci_cfg_access_unlock(struct pci_dev *dev); */ #ifdef CONFIG_PCI_DOMAINS extern int pci_domains_supported; -int pci_get_new_domain_nr(void); #else enum { pci_domains_supported = 0 }; static inline int pci_domain_nr(struct pci_bus *bus) { return 0; } static inline int pci_proc_domain(struct pci_bus *bus) { return 0; } -static inline int pci_get_new_domain_nr(void) { return -ENOSYS; } #endif /* CONFIG_PCI_DOMAINS */ /* @@ -1670,7 +1668,6 @@ static inline struct pci_dev *pci_get_domain_bus_and_slot(int domain, static inline int pci_domain_nr(struct pci_bus *bus) { return 0; } static inline struct pci_dev *pci_dev_get(struct pci_dev *dev) { return NULL; } -static inline int pci_get_new_domain_nr(void) { return -ENOSYS; } #define dev_is_pci(d) (false) #define dev_is_pf(d) (false) -- 2.13.6