All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/10] PCI DT header refactoring and compile test improvements
@ 2018-03-21 14:42 Lorenzo Pieralisi
  2018-03-21 14:42 ` [PATCH v2 01/10] PCI: kirin: Remove unnecessary asm/compiler.h include Lorenzo Pieralisi
                   ` (10 more replies)
  0 siblings, 11 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2018-03-21 14:42 UTC (permalink / raw)
  To: linux-pci
  Cc: Lorenzo Pieralisi, Bjorn Helgaas, Rob Herring, Linus Walleij,
	Xiaowei Song, Ray Jui, Scott Branden, Jon Mason, Jingoo Han,
	Joao Pinto, Thomas Petazzoni, Tanmay Inamdar, Shawn Lin,
	Ley Foon Tan, Fengguang Wu

Rebased/reworked a patch series previously posted by Rob Herring[1].

v1 -> v2:
	- Rebased against v4.16-rc1
	- Refactored/split patches

[1] https://marc.info/?l=linux-pci&m=152043736711658&w=2

Original cover letter
---------------------

This started with just moving private functions from of_pci.h to
drivers/pci/pci.h, but I was annoyed with trying to build all the right
configs, so I enabled COMPILE_TEST on a bunch of drivers. Then I fixed
the fallout from doing that. I'm sending this as all one series, but
really there is no dependency for the header refactoring patch.

Needless to say, this series is *compile tested* only. This is based on 
Bjorn's for-linus branch (and the of_pci.h fix there).

Rob

Fengguang Wu (4):
  PCI: kirin: struct kirin_pcie_driver can be static
  PCI: faraday: struct faraday_pci_variant can be static
  PCI: rcar: Fix semicolon.cocci warnings
  PCI: v3-semi: Fix semicolon.cocci warnings

Rob Herring (6):
  PCI: kirin: Remove unnecessary asm/compiler.h include
  PCI: iproc: Remove dependency on ARM specific struct pci_sys_data
  PCI: kirin: Fix missing dependency on PCI_MSI_IRQ_DOMAIN
  PCI: Improve host drivers compile test coverage
  PCI: dwc: Move CONFIG_PCI depends to menu
  PCI: Move private DT related functions into private header

 drivers/pci/dwc/Kconfig                | 42 +++++++++++++---------------------
 drivers/pci/dwc/pci-dra7xx.c           |  1 +
 drivers/pci/dwc/pcie-designware-host.c |  1 +
 drivers/pci/dwc/pcie-kirin.c           |  3 +--
 drivers/pci/host/Kconfig               | 32 ++++++++++++--------------
 drivers/pci/host/pci-aardvark.c        |  2 ++
 drivers/pci/host/pci-ftpci100.c        |  6 +++--
 drivers/pci/host/pci-mvebu.c           |  2 ++
 drivers/pci/host/pci-rcar-gen2.c       |  2 ++
 drivers/pci/host/pci-tegra.c           |  2 ++
 drivers/pci/host/pci-v3-semi.c         |  4 +++-
 drivers/pci/host/pci-xgene.c           |  2 ++
 drivers/pci/host/pcie-altera.c         |  2 ++
 drivers/pci/host/pcie-iproc-bcma.c     |  3 +--
 drivers/pci/host/pcie-iproc-platform.c |  1 +
 drivers/pci/host/pcie-iproc.c          | 19 ++-------------
 drivers/pci/host/pcie-iproc.h          |  4 ----
 drivers/pci/host/pcie-mediatek.c       |  2 ++
 drivers/pci/host/pcie-rcar.c           |  4 +++-
 drivers/pci/host/pcie-rockchip.c       |  2 ++
 drivers/pci/host/pcie-xilinx-nwl.c     |  2 ++
 drivers/pci/host/pcie-xilinx.c         |  2 ++
 drivers/pci/pci.h                      | 40 ++++++++++++++++++++++++++++++++
 include/linux/of_pci.h                 | 34 ---------------------------
 24 files changed, 108 insertions(+), 106 deletions(-)

-- 
2.15.0

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2018-03-27 17:44 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-21 14:42 [PATCH v2 00/10] PCI DT header refactoring and compile test improvements Lorenzo Pieralisi
2018-03-21 14:42 ` [PATCH v2 01/10] PCI: kirin: Remove unnecessary asm/compiler.h include Lorenzo Pieralisi
2018-03-21 14:42 ` [PATCH v2 02/10] PCI: iproc: Remove dependency on ARM specific struct pci_sys_data Lorenzo Pieralisi
2018-03-21 21:16   ` Bjorn Helgaas
2018-03-27 16:39     ` Rob Herring
2018-03-21 14:42 ` [PATCH v2 03/10] PCI: kirin: Fix missing dependency on PCI_MSI_IRQ_DOMAIN Lorenzo Pieralisi
2018-03-21 14:42 ` [PATCH v2 04/10] PCI: kirin: struct kirin_pcie_driver can be static Lorenzo Pieralisi
2018-03-27 17:44   ` Bjorn Helgaas
2018-03-21 14:42 ` [PATCH v2 05/10] PCI: faraday: struct faraday_pci_variant " Lorenzo Pieralisi
2018-03-22 10:46   ` Linus Walleij
2018-03-21 14:42 ` [PATCH v2 06/10] PCI: rcar: Fix semicolon.cocci warnings Lorenzo Pieralisi
2018-03-21 14:42 ` [PATCH v2 07/10] PCI: v3-semi: " Lorenzo Pieralisi
2018-03-22 10:27   ` Linus Walleij
2018-03-21 14:42 ` [PATCH v2 08/10] PCI: Improve host drivers compile test coverage Lorenzo Pieralisi
2018-03-21 17:58   ` Scott Branden
2018-03-21 14:42 ` [PATCH v2 09/10] PCI: dwc: Move CONFIG_PCI depends to menu Lorenzo Pieralisi
2018-03-24 14:03   ` Jingoo Han
2018-03-21 14:42 ` [PATCH v2 10/10] PCI: Move private DT related functions into private header Lorenzo Pieralisi
2018-03-24 14:07   ` Jingoo Han
2018-03-21 21:19 ` [PATCH v2 00/10] PCI DT header refactoring and compile test improvements Bjorn Helgaas
2018-03-27 16:34   ` Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.