diff options
author | Horia Geanta <horia.geanta@freescale.com> | 2012-07-03 12:16:52 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-07-10 23:08:29 -0400 |
commit | 865d506155b117edc7e668ced373030ce7108ce9 (patch) | |
tree | ab3976011e933ef1347b598c57f4e1ccaab51e8b /drivers/crypto/talitos.c | |
parent | d1a0eb98e7a8b7e244e31430fdb1a752243e2698 (diff) |
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 bb3e63f5596b..2561aea52b62 100644 --- a/drivers/crypto/talitos.c +++ b/drivers/crypto/talitos.c | |||
@@ -192,11 +192,11 @@ static int init_device(struct device *dev) | |||
192 | * callback must check err and feedback in descriptor header | 192 | * callback must check err and feedback in descriptor header |
193 | * for device processing status. | 193 | * for device processing status. |
194 | */ | 194 | */ |
195 | static int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, | 195 | int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, |
196 | void (*callback)(struct device *dev, | 196 | void (*callback)(struct device *dev, |
197 | struct talitos_desc *desc, | 197 | struct talitos_desc *desc, |
198 | void *context, int error), | 198 | void *context, int error), |
199 | void *context) | 199 | void *context) |
200 | { | 200 | { |
201 | struct talitos_private *priv = dev_get_drvdata(dev); | 201 | struct talitos_private *priv = dev_get_drvdata(dev); |
202 | struct talitos_request *request; | 202 | struct talitos_request *request; |
@@ -237,6 +237,7 @@ static int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc, | |||
237 | 237 | ||
238 | return -EINPROGRESS; | 238 | return -EINPROGRESS; |
239 | } | 239 | } |
240 | EXPORT_SYMBOL(talitos_submit); | ||
240 | 241 | ||
241 | /* | 242 | /* |
242 | * process what was done, notify callback of error if not | 243 | * process what was done, notify callback of error if not |