summaryrefslogtreecommitdiff
path: root/package/cryptodev-linux/patches/patch-cryptlib_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-19 14:48:33 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-19 14:49:03 -0600
commit1fca0943f320acd845ae610b4030cbb4aa6a3ac0 (patch)
tree56d860447e4a0bfe3f7c0747f4627698e76030ed /package/cryptodev-linux/patches/patch-cryptlib_c
parentd41473cb2807f4318548a830d4211dfe80723a19 (diff)
update to latest stable release, add patch from git
Diffstat (limited to 'package/cryptodev-linux/patches/patch-cryptlib_c')
-rw-r--r--package/cryptodev-linux/patches/patch-cryptlib_c38
1 files changed, 0 insertions, 38 deletions
diff --git a/package/cryptodev-linux/patches/patch-cryptlib_c b/package/cryptodev-linux/patches/patch-cryptlib_c
deleted file mode 100644
index 54f1684f5..000000000
--- a/package/cryptodev-linux/patches/patch-cryptlib_c
+++ /dev/null
@@ -1,38 +0,0 @@
---- cryptodev-linux-1.6.orig/cryptlib.c 2013-01-30 17:13:50.000000000 +0100
-+++ cryptodev-linux-1.6/cryptlib.c 2014-02-21 14:33:04.000000000 +0100
-@@ -220,7 +220,7 @@ ssize_t cryptodev_cipher_encrypt(struct
- {
- int ret;
-
-- INIT_COMPLETION(cdata->async.result->completion);
-+ reinit_completion(&cdata->async.result->completion);
-
- if (cdata->aead == 0) {
- ablkcipher_request_set_crypt(cdata->async.request,
-@@ -243,7 +243,7 @@ ssize_t cryptodev_cipher_decrypt(struct
- {
- int ret;
-
-- INIT_COMPLETION(cdata->async.result->completion);
-+ reinit_completion(&cdata->async.result->completion);
- if (cdata->aead == 0) {
- ablkcipher_request_set_crypt(cdata->async.request,
- (struct scatterlist *)src, dst,
-@@ -355,7 +355,7 @@ ssize_t cryptodev_hash_update(struct has
- {
- int ret;
-
-- INIT_COMPLETION(hdata->async.result->completion);
-+ reinit_completion(&hdata->async.result->completion);
- ahash_request_set_crypt(hdata->async.request, sg, NULL, len);
-
- ret = crypto_ahash_update(hdata->async.request);
-@@ -367,7 +367,7 @@ int cryptodev_hash_final(struct hash_dat
- {
- int ret;
-
-- INIT_COMPLETION(hdata->async.result->completion);
-+ reinit_completion(&hdata->async.result->completion);
- ahash_request_set_crypt(hdata->async.request, NULL, output, 0);
-
- ret = crypto_ahash_final(hdata->async.request);