From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f68.google.com (mail-oi0-f68.google.com [209.85.218.68]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3zCL8z6WMtzDqp6 for ; Fri, 5 Jan 2018 08:12:19 +1100 (AEDT) Received: by mail-oi0-f68.google.com with SMTP id j14so1892942oih.3 for ; Thu, 04 Jan 2018 13:12:19 -0800 (PST) From: Rob Herring To: Bjorn Helgaas Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Benjamin Herrenschmidt , Paul Mackerras , Michael Ellerman , Frank Rowand , linuxppc-dev@lists.ozlabs.org, linux-pci@vger.kernel.org Subject: [PATCH 0/3] PCI: move DT PCI functions to PCI core Date: Thu, 4 Jan 2018 15:12:12 -0600 Message-Id: <20180104211215.11344-1-robh@kernel.org> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Most subsystem specific functions have been moved into the respective subsystems. Only PCI and networking remain. This series moves most of the PCI related code to drivers/pci/of.c. Some bus address functions for PCI remain in of/address.c because we don't have infrastructure to split up the per bus helper functions. I expect Bjorn to take this series, so PPC maintainers please ack. Rob Rob Herring (3): PCI: move OF related PCI functions into PCI core powerpc/pci: use of_irq_parse_and_map_pci helper PCI: make of_irq_parse_pci static arch/arm/mach-mvebu/Kconfig | 1 - arch/powerpc/kernel/pci-common.c | 8 +- drivers/of/Kconfig | 16 -- drivers/of/Makefile | 2 - drivers/of/address.c | 8 +- drivers/of/of_pci.c | 384 ----------------------------- drivers/of/of_pci_irq.c | 131 ---------- drivers/pci/of.c | 505 +++++++++++++++++++++++++++++++++++++++ include/linux/of_pci.h | 8 +- 9 files changed, 510 insertions(+), 553 deletions(-) delete mode 100644 drivers/of/of_pci.c delete mode 100644 drivers/of/of_pci_irq.c -- 2.14.1