From patchwork Sat Jan 21 19:03:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 137200 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 049CB1007D1 for ; Sun, 22 Jan 2012 05:07:07 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751197Ab2AUSEk (ORCPT ); Sat, 21 Jan 2012 13:04:40 -0500 Received: from oproxy6-pub.bluehost.com ([67.222.54.6]:56970 "HELO oproxy6-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751329Ab2AUSEh (ORCPT ); Sat, 21 Jan 2012 13:04:37 -0500 Received: (qmail 30219 invoked by uid 0); 21 Jan 2012 18:04:37 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy3.bluehost.com with SMTP; 21 Jan 2012 18:04:37 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=XJ6DhyCpDih9wEnNRHbEe/iGwz8nZSj43i23CpcG0tA=; b=b34CioUomzDKmEBTG3SDBf5Wy8raX70i10SZfjQ6ncjFYO+Cmb5kstsdAMDD7fLt6669SQByphW8zYCarttCq/FX1GDnfZcSaQv929k9R2cbkiduaPK5tvoyQqb7WASE; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RofIr-0008CK-3Q; Sat, 21 Jan 2012 11:04:37 -0700 Message-ID: <4F1B0BE8.9050403@xenotime.net> Date: Sat, 21 Jan 2012 11:03:04 -0800 From: Randy Dunlap Organization: YPO4 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Linux Kernel Mailing List CC: Linus Torvalds , Netdev , David Miller Subject: [PATCH 9/14] kernel-doc: fix new warning in net/phy/mdio_bus.c 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: Warning(drivers/net/phy/mdio_bus.c:49): No description found for parameter 'size' Signed-off-by: Randy Dunlap --- drivers/net/phy/mdio_bus.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) -- 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 --- lnx-33-rc1.orig/drivers/net/phy/mdio_bus.c +++ lnx-33-rc1/drivers/net/phy/mdio_bus.c @@ -38,12 +38,11 @@ /** * mdiobus_alloc_size - allocate a mii_bus structure + * @size: extra amount of memory to allocate for private storage. + * If non-zero, then bus->priv is points to that memory. * * Description: called by a bus driver to allocate an mii_bus * structure to fill in. - * - * 'size' is an an extra amount of memory to allocate for private storage. - * If non-zero, then bus->priv is points to that memory. */ struct mii_bus *mdiobus_alloc_size(size_t size) {