[PATCH v3 1/2] PCI: generic: Refactor code to enable reuse by other drivers.
From: Will Deacon <hidden>
Date: 2016-01-12 18:00:06
Also in:
linux-devicetree, linux-pci, lkml
From: Will Deacon <hidden>
Date: 2016-01-12 18:00:06
Also in:
linux-devicetree, linux-pci, lkml
On Fri, Jan 08, 2016 at 03:59:12PM -0800, David Daney wrote:
From: David Daney <redacted>
No change in functionality.
Move structure definitions into a separate header file. Move common
code to new file with Kconfig machinery to build it. Split probe
function in to two parts:
- a small driver specific probe function (gen_pci_probe)
- a common probe that can be used by other drivers
(pci_host_common_probe)
Signed-off-by: David Daney <redacted>
---
MAINTAINERS | 1 +
drivers/pci/host/Kconfig | 4 +
drivers/pci/host/Makefile | 1 +
drivers/pci/host/pci-host-common.c | 194 ++++++++++++++++++++++++++++++++++++
drivers/pci/host/pci-host-common.h | 56 +++++++++++
drivers/pci/host/pci-host-generic.c | 190 +----------------------------------
6 files changed, 260 insertions(+), 186 deletions(-)
create mode 100644 drivers/pci/host/pci-host-common.c
create mode 100644 drivers/pci/host/pci-host-common.hLooks fine to me: Acked-by: Will Deacon [off-list ref] Will