projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a760a66
)
crypto: ixp4xx - Fix qmgr_request_queue build failure
author
Krzysztof Hałasa
<khc@pm.waw.pl>
Wed, 4 Mar 2009 00:01:22 +0000
(08:01 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 4 Mar 2009 00:01:22 +0000
(08:01 +0800)
There is another user of IXP4xx queue manager, fix it.
Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/ixp4xx_crypto.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/crypto/ixp4xx_crypto.c
b/drivers/crypto/ixp4xx_crypto.c
index 2d637e0fbc038df28dbfbff2d342b89edf6db4a4..d9e751be8c5fb120e5f0d06ef27684c8f33fa549 100644
(file)
--- a/
drivers/crypto/ixp4xx_crypto.c
+++ b/
drivers/crypto/ixp4xx_crypto.c
@@
-457,10
+457,12
@@
static int init_ixp_crypto(void)
if (!ctx_pool) {
goto err;
}
- ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0);
+ ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0,
+ "ixp_crypto:out", NULL);
if (ret)
goto err;
- ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0);
+ ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0,
+ "ixp_crypto:in", NULL);
if (ret) {
qmgr_release_queue(SEND_QID);
goto err;