mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
a0f30f592d
Add a driver for the ACPI-based EC event interface found on the OLPC XO-1.5 laptop. This enables notification of battery/AC power events, and enables various devices to be used as wakeup sources through regular ACPI mechanisms. This driver can't be built as a module, because some drivers need to know at boot-time if SCI-based functionality is available via olpc_ec_wakeup_available(). Signed-off-by: Daniel Drake <dsd@laptop.org> Link: http://lkml.kernel.org/r/1309019658-1712-12-git-send-email-dsd@laptop.org Acked-by: Andres Salomon <dilinger@queued.net> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
6 lines
245 B
Makefile
6 lines
245 B
Makefile
obj-$(CONFIG_OLPC) += olpc.o olpc_ofw.o olpc_dt.o
|
|
obj-$(CONFIG_OLPC_XO1_PM) += olpc-xo1-pm.o xo1-wakeup.o
|
|
obj-$(CONFIG_OLPC_XO1_RTC) += olpc-xo1-rtc.o
|
|
obj-$(CONFIG_OLPC_XO1_SCI) += olpc-xo1-sci.o
|
|
obj-$(CONFIG_OLPC_XO15_SCI) += olpc-xo15-sci.o
|