mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 02:46:55 +07:00
271fb719cc
The PCIe PME code only consists of one file, so it doesn't need to occupy its own directory. Move it to drivers/pci/pcie/pme.c and remove the contents of drivers/pci/pcie/pme . Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
17 lines
364 B
Makefile
17 lines
364 B
Makefile
#
|
|
# Makefile for PCI-Express PORT Driver
|
|
#
|
|
|
|
# Build PCI Express ASPM if needed
|
|
obj-$(CONFIG_PCIEASPM) += aspm.o
|
|
|
|
pcieportdrv-y := portdrv_core.o portdrv_pci.o portdrv_bus.o
|
|
pcieportdrv-$(CONFIG_ACPI) += portdrv_acpi.o
|
|
|
|
obj-$(CONFIG_PCIEPORTBUS) += pcieportdrv.o
|
|
|
|
# Build PCI Express AER if needed
|
|
obj-$(CONFIG_PCIEAER) += aer/
|
|
|
|
obj-$(CONFIG_PCIE_PME) += pme.o
|