e8b2fd0122
As it was a synonym for (CONFIG_ACPI && CONFIG_X86), the ifdefs for it were more clutter than they were worth. For ia64, just add a few stubs in anticipation of future S3 or S4 support. Signed-off-by: Len Brown <len.brown@intel.com>
10 lines
216 B
Makefile
10 lines
216 B
Makefile
obj-$(CONFIG_ACPI) += boot.o
|
|
ifneq ($(CONFIG_PCI),)
|
|
obj-$(CONFIG_X86_IO_APIC) += earlyquirk.o
|
|
endif
|
|
obj-$(CONFIG_ACPI) += sleep.o wakeup.o
|
|
|
|
ifneq ($(CONFIG_ACPI_PROCESSOR),)
|
|
obj-y += cstate.o processor.o
|
|
endif
|
|
|