From patchwork Sun Aug 23 19:51:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 7058211 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: X-Original-To: patchwork-linux-crypto@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 69741C05AC for ; Sun, 23 Aug 2015 19:51:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6BA7E2064D for ; Sun, 23 Aug 2015 19:51:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 578282064C for ; Sun, 23 Aug 2015 19:51:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752670AbbHWTvO (ORCPT ); Sun, 23 Aug 2015 15:51:14 -0400 Received: from tex.lwn.net ([70.33.254.29]:33343 "EHLO vena.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752546AbbHWTvN (ORCPT ); Sun, 23 Aug 2015 15:51:13 -0400 Received: from xps.lwn.net (localhost.localdomain [127.0.0.1]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by vena.lwn.net (Postfix) with ESMTP id B1D2E1540040; Sun, 23 Aug 2015 13:51:11 -0600 (MDT) Date: Sun, 23 Aug 2015 13:51:01 -0600 From: Jonathan Corbet To: Herbert Xu Cc: linux-crypto@vger.kernel.org, linux-doc@vger.kernel.org Subject: [PATCH] doc: crypto: warning cleanup Message-ID: <20150823135101.270c6630@xps.lwn.net> Organization: LWN.net X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.28; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix up a missing field description and a misdirected doc inclusion to make a couple of warnings go away. Signed-off-by: Jonathan Corbet Acked-by: Stephan Mueller --- Documentation/DocBook/crypto-API.tmpl | 2 +- include/crypto/aead.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/DocBook/crypto-API.tmpl b/Documentation/DocBook/crypto-API.tmpl index 0992531ffefb..980bcc994913 100644 --- a/Documentation/DocBook/crypto-API.tmpl +++ b/Documentation/DocBook/crypto-API.tmpl @@ -1687,7 +1687,7 @@ read(opfd, out, outlen); !Pinclude/linux/crypto.h Block Cipher Algorithm Definitions !Finclude/linux/crypto.h crypto_alg !Finclude/linux/crypto.h ablkcipher_alg -!Finclude/linux/crypto.h aead_alg +!Finclude/crypto/aead.h aead_alg !Finclude/linux/crypto.h blkcipher_alg !Finclude/linux/crypto.h cipher_alg !Finclude/crypto/rng.h rng_alg diff --git a/include/crypto/aead.h b/include/crypto/aead.h index 7169ad04acc0..88c6cdf3a886 100644 --- a/include/crypto/aead.h +++ b/include/crypto/aead.h @@ -120,6 +120,7 @@ struct aead_givcrypt_request { * @exit: Deinitialize the cryptographic transformation object. This is a * counterpart to @init, used to remove various changes set in * @init. + * @base: Common crypto API algorithm data structure * * All fields except @ivsize is mandatory and must be filled. */