diff options
author | Eric Biggers <ebiggers3@gmail.com> | 2016-04-02 10:54:56 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-04-15 22:35:44 +0800 |
commit | 6eae29e7e7144d01a6d6af111d232b36cdd30f51 (patch) | |
tree | ef3e63a4a50b469476f0bdbd77942beca41aaa78 /Documentation/DocBook | |
parent | 043809d8d25eac8307c8c7b74bca7266070cb007 (diff) | |
download | linux-6eae29e7e7144d01a6d6af111d232b36cdd30f51.tar.bz2 |
crypto: doc - document correct return value for request allocation
Signed-off-by: Eric Biggers <ebiggers3@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r-- | Documentation/DocBook/crypto-API.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/DocBook/crypto-API.tmpl b/Documentation/DocBook/crypto-API.tmpl index 348619fcafb8..d55dc5a39bad 100644 --- a/Documentation/DocBook/crypto-API.tmpl +++ b/Documentation/DocBook/crypto-API.tmpl @@ -1936,9 +1936,9 @@ static int test_skcipher(void) } req = skcipher_request_alloc(skcipher, GFP_KERNEL); - if (IS_ERR(req)) { - pr_info("could not allocate request queue\n"); - ret = PTR_ERR(req); + if (!req) { + pr_info("could not allocate skcipher request\n"); + ret = -ENOMEM; goto out; } |