Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 296998
b: refs/heads/master
c: 3e2abc5
h: refs/heads/master
v: v3
  • Loading branch information
Seth Forshee authored and Matthew Garrett committed Mar 20, 2012
1 parent efba59f commit 3d3e63d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7714567c87f43862d3d7049ed2907567be3e50c3
refs/heads/master: 3e2abc5a35d25442821e1733687b7abbc83b5072
10 changes: 10 additions & 0 deletions trunk/drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/acpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ extern int ec_write(u8 addr, u8 val);
extern int ec_transaction(u8 command,
const u8 *wdata, unsigned wdata_len,
u8 *rdata, unsigned rdata_len);
extern acpi_handle ec_get_handle(void);

#if defined(CONFIG_ACPI_WMI) || defined(CONFIG_ACPI_WMI_MODULE)

Expand Down

0 comments on commit 3d3e63d

Please sign in to comment.