diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2018-06-08 15:48:47 +0200 |
---|---|---|
committer | Bjorn Helgaas <helgaas@kernel.org> | 2018-06-11 15:11:39 +0200 |
commit | 4696b828ca3781deebc3f61d50978d5c8c5be405 (patch) | |
tree | 50151d3abf5e2936adc47a8ee375c66d81ac7672 /drivers/pci/pcie/Makefile | |
parent | PCI/AER: Squash Kconfig.debug into Kconfig (diff) | |
download | linux-4696b828ca3781deebc3f61d50978d5c8c5be405.tar.xz linux-4696b828ca3781deebc3f61d50978d5c8c5be405.zip |
PCI/AER: Hoist aerdrv.c, aer_inject.c up to drivers/pci/pcie/
Hoist aerdrv.c, aer_inject.c up to drivers/pci/pcie/ so they're next to
other PCIe service drivers. No functional change intended.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Keith Busch <keith.busch@intel.com>
Diffstat (limited to 'drivers/pci/pcie/Makefile')
-rw-r--r-- | drivers/pci/pcie/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/pcie/Makefile b/drivers/pci/pcie/Makefile index 03f4e0b3a140..ab514083d5d4 100644 --- a/drivers/pci/pcie/Makefile +++ b/drivers/pci/pcie/Makefile @@ -7,7 +7,8 @@ pcieportdrv-y := portdrv_core.o portdrv_pci.o err.o obj-$(CONFIG_PCIEPORTBUS) += pcieportdrv.o obj-$(CONFIG_PCIEASPM) += aspm.o -obj-$(CONFIG_PCIEAER) += aer/ +obj-$(CONFIG_PCIEAER) += aer.o +obj-$(CONFIG_PCIEAER_INJECT) += aer_inject.o obj-$(CONFIG_PCIE_PME) += pme.o obj-$(CONFIG_PCIE_DPC) += dpc.o obj-$(CONFIG_PCIE_PTM) += ptm.o |