From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pg1-x544.google.com ([2607:f8b0:4864:20::544]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1giDdB-0006a2-FJ for barebox@lists.infradead.org; Sat, 12 Jan 2019 07:23:03 +0000 Received: by mail-pg1-x544.google.com with SMTP id t13so7256911pgr.11 for ; Fri, 11 Jan 2019 23:22:57 -0800 (PST) From: Andrey Smirnov Date: Fri, 11 Jan 2019 23:22:26 -0800 Message-Id: <20190112072234.21878-9-andrew.smirnov@gmail.com> In-Reply-To: <20190112072234.21878-1-andrew.smirnov@gmail.com> References: <20190112072234.21878-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 v2 08/16] PCI: Drop "slots" from struct pci_bus To: barebox@lists.infradead.org Cc: Andrey Smirnov This field is not used by Barebox. Remove it. No functional change intended. Signed-off-by: Andrey Smirnov --- drivers/pci/pci.c | 1 - include/linux/pci.h | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index b0f5ac1b15..683f4e5540 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -22,7 +22,6 @@ static struct pci_bus *pci_alloc_bus(void) INIT_LIST_HEAD(&b->node); INIT_LIST_HEAD(&b->children); INIT_LIST_HEAD(&b->devices); - INIT_LIST_HEAD(&b->slots); INIT_LIST_HEAD(&b->resources); return b; diff --git a/include/linux/pci.h b/include/linux/pci.h index c8f91cdd96..28aa56343b 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -129,7 +129,6 @@ struct pci_bus { struct list_head node; /* node in list of buses */ struct list_head children; /* list of child buses */ struct list_head devices; /* list of devices on this bus */ - struct list_head slots; /* list of slots on this bus */ struct resource *resource[PCI_BRIDGE_RESOURCE_NUM]; struct list_head resources; /* address space routed to this bus */ -- 2.20.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox