From patchwork Mon Jul 25 18:41:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 106733 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 67712B6F8E for ; Tue, 26 Jul 2011 04:41:31 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752353Ab1GYSlF (ORCPT ); Mon, 25 Jul 2011 14:41:05 -0400 Received: from oproxy1-pub.bluehost.com ([66.147.249.253]:55357 "HELO oproxy1-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751350Ab1GYSlE (ORCPT ); Mon, 25 Jul 2011 14:41:04 -0400 Received: (qmail 21514 invoked by uid 0); 25 Jul 2011 18:41:02 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy1.bluehost.com with SMTP; 25 Jul 2011 18:41:02 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=xenotime.net; h=Received:Date:From:To:Cc:Subject:Message-Id:Organization:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding:X-Identified-User; b=MxAYrAO1xJzsOz2eDWrnfmaUEEzbWejNSpDwnbLB906eEGNn/auSgXAJvwMdDCpU4xnrhfGmymY/6myT5wYoNfu6FhQAAtdI0Zk+RKojDG5i1Eq4SGCeV0+PdC330s6x; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=chimera.site) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1QlQ5O-0002ms-HF; Mon, 25 Jul 2011 12:41:02 -0600 Date: Mon, 25 Jul 2011 11:41:01 -0700 From: Randy Dunlap To: netdev Cc: davem@davemloft.net Subject: [PATCH] net: fix eth.c kernel-doc warning Message-Id: <20110725114101.04e84376.rdunlap@xenotime.net> Organization: YPO4 X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Randy Dunlap Fix new kernel-doc warning in eth.c: Warning(net/ethernet/eth.c:237): No description found for parameter 'type' Signed-off-by: Randy Dunlap --- net/ethernet/eth.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-3.0-git4.orig/net/ethernet/eth.c +++ linux-3.0-git4/net/ethernet/eth.c @@ -231,6 +231,7 @@ EXPORT_SYMBOL(eth_header_parse); * eth_header_cache - fill cache entry from neighbour * @neigh: source neighbour * @hh: destination cache entry + * @type: Ethernet type field * Create an Ethernet header template from the neighbour. */ int eth_header_cache(const struct neighbour *neigh, struct hh_cache *hh, __be16 type)