Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 373166
b: refs/heads/master
c: 5ebeaff
h: refs/heads/master
v: v3
  • Loading branch information
Samuel Ortiz committed Apr 5, 2013
1 parent 2e63481 commit dec8a74
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 6af6dc2d2aa654e928ed0a64c28724d1cd2c36c1
refs/heads/master: 5ebeaff5c5be9f21680b91aac77ee155d935f888
7 changes: 7 additions & 0 deletions trunk/drivers/mfd/cros_ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <linux/interrupt.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/mfd/core.h>
#include <linux/mfd/cros_ec.h>
#include <linux/mfd/cros_ec_commands.h>
Expand All @@ -41,6 +42,7 @@ int cros_ec_prepare_tx(struct cros_ec_device *ec_dev,

return EC_MSG_TX_PROTO_BYTES + msg->out_len;
}
EXPORT_SYMBOL(cros_ec_prepare_tx);

static int cros_ec_command_sendrecv(struct cros_ec_device *ec_dev,
uint16_t cmd, void *out_buf, int out_len,
Expand Down Expand Up @@ -150,6 +152,7 @@ int cros_ec_register(struct cros_ec_device *ec_dev)
fail_din:
return err;
}
EXPORT_SYMBOL(cros_ec_register);

int cros_ec_remove(struct cros_ec_device *ec_dev)
{
Expand All @@ -160,6 +163,7 @@ int cros_ec_remove(struct cros_ec_device *ec_dev)

return 0;
}
EXPORT_SYMBOL(cros_ec_remove);

#ifdef CONFIG_PM_SLEEP
int cros_ec_suspend(struct cros_ec_device *ec_dev)
Expand All @@ -174,6 +178,7 @@ int cros_ec_suspend(struct cros_ec_device *ec_dev)

return 0;
}
EXPORT_SYMBOL(cros_ec_suspend);

int cros_ec_resume(struct cros_ec_device *ec_dev)
{
Expand All @@ -186,4 +191,6 @@ int cros_ec_resume(struct cros_ec_device *ec_dev)

return 0;
}
EXPORT_SYMBOL(cros_ec_resume);

#endif

0 comments on commit dec8a74

Please sign in to comment.