diff options
author | Horia Geanta <horia.geanta@freescale.com> | 2012-07-03 19:16:52 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-07-11 11:08:29 +0800 |
commit | 865d506155b117edc7e668ced373030ce7108ce9 (patch) | |
tree | ab3976011e933ef1347b598c57f4e1ccaab51e8b /drivers/crypto/talitos.c | |
parent | d1a0eb98e7a8b7e244e31430fdb1a752243e2698 (diff) | |
download | linux-3.10-865d506155b117edc7e668ced373030ce7108ce9.tar.gz linux-3.10-865d506155b117edc7e668ced373030ce7108ce9.tar.bz2 linux-3.10-865d506155b117edc7e668ced373030ce7108ce9.zip |
crypto: talitos - export the talitos_submit function
This patch exports the talitos_submit function so that on
need basis same can be used by other entities.
Signed-off-by: Sandeep Malik <Sandeep.Malik@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Horia Geanta <horia.geanta@freescale.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/talitos.c')
-rw-r--r-- | drivers/crypto/talitos.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c index bb3e63f5596..2561aea52b6 100644 --- a/drivers/crypto/talitos.c +++ b/drivers/crypto/talitos.c @@ -192,11 +192,11 @@ static int init_device(struct device *dev) * callback must check err and feedback in descriptor header * for device processing status. */ -static int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, - void (*callback)(struct device *dev, - struct talitos_desc *desc, - void *context, int error), - void *context) +int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, + void (*callback)(struct device *dev, + struct talitos_desc *desc, + void *context, int error), + void *context) { struct talitos_private *priv = dev_get_drvdata(dev); struct talitos_request *request; @@ -237,6 +237,7 @@ static int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, return -EINPROGRESS; } +EXPORT_SYMBOL(talitos_submit); /* * process what was done, notify callback of error if not |