mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00: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>
16 lines
364 B
Makefile
16 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
|