From patchwork Mon Aug 24 13:56:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masanari Iida X-Patchwork-Id: 7064531 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 98D3C9F305 for ; Mon, 24 Aug 2015 13:56:56 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BF7F220726 for ; Mon, 24 Aug 2015 13:56:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E5D0520761 for ; Mon, 24 Aug 2015 13:56:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754654AbbHXN4f (ORCPT ); Mon, 24 Aug 2015 09:56:35 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:35425 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754269AbbHXN4d (ORCPT ); Mon, 24 Aug 2015 09:56:33 -0400 Received: by pacdd16 with SMTP id dd16so97869288pac.2; Mon, 24 Aug 2015 06:56:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=WYU3cavfCi9Xa4rvJUFKpGvZ2pAJ4/yCHILUc3iSKUI=; b=GR3+YsmW3xtNBm0l70gIVGzkVUNeDpwDYGMVI8LyVmj4rtZl9HYW08ur/a/4EcCgTN FnKyJvMjNOqJtHreA3SzsIzXZSfA8zxq6mTPssn30mX1QlmVGbR/fpALr1S0pJOhZIgi 0HDtb1hMRJUFXNR9sOJwznQ4+ifoKXBKBk5qYU+bHuLLvzEHDloHI3g2n+t/+ldvjts8 FDeVYZwGkmzyDRRRlE6fC4YSwTZAHmjQzsw6jzBYbWU9EABOrGehAc4Ok+c9fJVAqYmT Tr7uvz91HUL7U8PxcAh5flSjegRJtCYwpoFntreKxbd7nx/prSrMht4cq/01H+vyo3wn HIlA== X-Received: by 10.68.98.34 with SMTP id ef2mr18404914pbb.45.1440424592871; Mon, 24 Aug 2015 06:56:32 -0700 (PDT) Received: from masabert (i118-21-156-233.s30.a048.ap.plala.or.jp. [118.21.156.233]) by smtp.gmail.com with ESMTPSA id qe2sm17612010pdb.27.2015.08.24.06.56.31 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Aug 2015 06:56:32 -0700 (PDT) Received: by masabert (Postfix, from userid 1000) id 2ABC2E3FB1; Mon, 24 Aug 2015 22:56:56 +0900 (JST) From: Masanari Iida To: davem@davemloft.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, corbet@lwn.net, linux-media@vger.kernel.org Cc: Masanari Iida Subject: [PATCH] net-next: Fix warning while make xmldocs caused by skbuff.c Date: Mon, 24 Aug 2015 22:56:54 +0900 Message-Id: <1440424614-471-1-git-send-email-standby24x7@gmail.com> X-Mailer: git-send-email 2.5.0.234.gefc8a62 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Status: No, score=-8.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable 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 This patch fix following warnings. .//net/core/skbuff.c:407: warning: No description found for parameter 'len' .//net/core/skbuff.c:407: warning: Excess function parameter 'length' description in '__netdev_alloc_skb' .//net/core/skbuff.c:476: warning: No description found for parameter 'len' .//net/core/skbuff.c:476: warning: Excess function parameter 'length' description in '__napi_alloc_skb' Signed-off-by: Masanari Iida --- net/core/skbuff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 7b84330..dad4dd3 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -392,7 +392,7 @@ EXPORT_SYMBOL(napi_alloc_frag); /** * __netdev_alloc_skb - allocate an skbuff for rx on a specific device * @dev: network device to receive on - * @length: length to allocate + * @len: length to allocate * @gfp_mask: get_free_pages mask, passed to alloc_skb * * Allocate a new &sk_buff and assign it a usage count of one. The @@ -461,7 +461,7 @@ EXPORT_SYMBOL(__netdev_alloc_skb); /** * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance * @napi: napi instance this buffer was allocated for - * @length: length to allocate + * @len: length to allocate * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages * * Allocate a new sk_buff for use in NAPI receive. This buffer will