diff options
author | Seth Forshee <seth.forshee@canonical.com> | 2012-01-18 14:44:08 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-03-20 12:14:25 -0400 |
commit | 3e2abc5a35d25442821e1733687b7abbc83b5072 (patch) | |
tree | b20d167e7211e8ac75000b0fbe27cf16abe121cf /drivers/acpi/ec.c | |
parent | 7714567c87f43862d3d7049ed2907567be3e50c3 (diff) |
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/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 10 |
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, | |||
445 | 445 | ||
446 | EXPORT_SYMBOL(ec_transaction); | 446 | EXPORT_SYMBOL(ec_transaction); |
447 | 447 | ||
448 | /* Get the handle to the EC device */ | ||
449 | acpi_handle ec_get_handle(void) | ||
450 | { | ||
451 | if (!first_ec) | ||
452 | return NULL; | ||
453 | return first_ec->handle; | ||
454 | } | ||
455 | |||
456 | EXPORT_SYMBOL(ec_get_handle); | ||
457 | |||
448 | void acpi_ec_block_transactions(void) | 458 | void acpi_ec_block_transactions(void) |
449 | { | 459 | { |
450 | struct acpi_ec *ec = first_ec; | 460 | struct acpi_ec *ec = first_ec; |