summaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorSeth Forshee2012-01-18 20:44:08 +0100
committerMatthew Garrett2012-03-20 17:14:25 +0100
commit3e2abc5a35d25442821e1733687b7abbc83b5072 (patch)
treeb20d167e7211e8ac75000b0fbe27cf16abe121cf /drivers/acpi
parentintel_mid_powerbtn: use MSIC read/write instead of ipc_scu (diff)
downloadkernel-qcow2-linux-3e2abc5a35d25442821e1733687b7abbc83b5072.tar.gz
kernel-qcow2-linux-3e2abc5a35d25442821e1733687b7abbc83b5072.tar.xz
kernel-qcow2-linux-3e2abc5a35d25442821e1733687b7abbc83b5072.zip
ACPI: EC: Add ec_get_handle()
toshiba_acpi needs to execute an AML method within the EC namespace to make hotkeys work on some platforms. Provide an interface to allow it to easily get a handle to the EC namespace for this purpose. Signed-off-by: Seth Forshee <seth.forshee@canonical.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/ec.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index b19a18dd994f..e37615f310d7 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -445,6 +445,16 @@ int ec_transaction(u8 command,
EXPORT_SYMBOL(ec_transaction);
+/* Get the handle to the EC device */
+acpi_handle ec_get_handle(void)
+{
+ if (!first_ec)
+ return NULL;
+ return first_ec->handle;
+}
+
+EXPORT_SYMBOL(ec_get_handle);
+
void acpi_ec_block_transactions(void)
{
struct acpi_ec *ec = first_ec;