From 93d2c561b61410f073b9327badee5f4b4b74b851 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 31 Mar 2017 05:12:40 +0200 Subject: cryptodev-linux: use latest git --- package/cryptodev-linux/patches/patch-cryptlib_c | 25 ------------------------ 1 file changed, 25 deletions(-) delete mode 100644 package/cryptodev-linux/patches/patch-cryptlib_c (limited to 'package/cryptodev-linux/patches/patch-cryptlib_c') diff --git a/package/cryptodev-linux/patches/patch-cryptlib_c b/package/cryptodev-linux/patches/patch-cryptlib_c deleted file mode 100644 index 02e8d9b35..000000000 --- a/package/cryptodev-linux/patches/patch-cryptlib_c +++ /dev/null @@ -1,25 +0,0 @@ ---- cryptodev-linux-1.8.orig/cryptlib.c 2015-11-28 02:07:11.000000000 +0100 -+++ cryptodev-linux-1.8/cryptlib.c 2016-12-13 02:21:39.899840926 +0100 -@@ -36,6 +36,7 @@ - #include - #include - #include -+#include - #include "cryptodev_int.h" - - -@@ -131,11 +132,13 @@ int cryptodev_cipher_init(struct cipher_ - uint8_t *keyp, size_t keylen, int stream, int aead) - { - int ret; -+ struct crypto_skcipher *tfm; - - if (aead == 0) { - struct ablkcipher_alg *alg; - -- out->async.s = crypto_alloc_ablkcipher(alg_name, 0, 0); -+ tfm = crypto_alloc_skcipher(alg_name, 0, 0); -+ out->async.s->base = tfm->base; - if (unlikely(IS_ERR(out->async.s))) { - ddebug(1, "Failed to load cipher %s", alg_name); - return -EINVAL; -- cgit v1.2.3