diff options
author | Robert Moore <Robert.Moore@intel.com> | 2010-12-01 12:57:25 -0800 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2010-12-01 12:57:25 -0800 |
commit | 3bc77e86ae03b3ceb7241f224053e399fb3f56b2 (patch) | |
tree | a2b4dbeef66d7190a5d30e7675a1f1cf2d14f741 /generate/unix/acpiexec | |
parent | 1d96aaf67d188e319eb926cc3304cfe94e7f93ab (diff) | |
download | acpica-3bc77e86ae03b3ceb7241f224053e399fb3f56b2.tar.gz |
GPE support code overhaul and enhancement.
Contains the complete overhaul of the GPE support code including
removal of _PRW execution, improved handling of wake GPEs, new
external interfaces, and implicit notify support. ACPICA BZ 858,
870,877. Matthew Garrett, Lin Ming, Bob Moore, Rafael Wysocki.
Note: This support is committed as a single patch here because
of multiple patch backporting from Linux and the resulting
interdependency issues.
See the ACPICA reference for full documentation.
Diffstat (limited to 'generate/unix/acpiexec')
-rw-r--r-- | generate/unix/acpiexec/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generate/unix/acpiexec/Makefile b/generate/unix/acpiexec/Makefile index c470890f9..d5c047e8c 100644 --- a/generate/unix/acpiexec/Makefile +++ b/generate/unix/acpiexec/Makefile @@ -56,6 +56,7 @@ OBJS = \ evsci.o \ evxface.o \ evxfevnt.o \ + evxfgpe.o \ evxfregn.o \ exconfig.o \ exconvrt.o \ @@ -312,6 +313,9 @@ evxface.o : $(ACPICA_CORE)/events/evxface.c evxfevnt.o : $(ACPICA_CORE)/events/evxfevnt.c $(COMPILE) +evxfgpe.o : $(ACPICA_CORE)/events/evxfgpe.c + $(COMPILE) + evxfregn.o : $(ACPICA_CORE)/events/evxfregn.c $(COMPILE) |