From patchwork Sat Jun 9 00:07:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 163874 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 61521B6FA1 for ; Sat, 9 Jun 2012 10:07:33 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761998Ab2FIAHb (ORCPT ); Fri, 8 Jun 2012 20:07:31 -0400 Received: from oproxy7-pub.bluehost.com ([67.222.55.9]:43772 "HELO oproxy7-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1761343Ab2FIAHa (ORCPT ); Fri, 8 Jun 2012 20:07:30 -0400 Received: (qmail 22978 invoked by uid 0); 9 Jun 2012 00:07:30 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy7.bluehost.com with SMTP; 9 Jun 2012 00:07:30 -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:To:MIME-Version:From:Date:Message-ID; bh=fCPZ4wzGOOt5OAb4TWskuUNuURxzNIfMHW6QJHPRu00=; b=bXeFpCPRy+bAqnXIXzReOtucJWnlU+63zKHQc/Rjddpsjj5xy2P+nd2eqUWGguut+fxn+9QTaVtlW+ZHsnvscv6gBvPDPVpkZ513+UUjFIE4ia0dhYOiSb08ql2Suew4; Received: from [50.53.38.135] (port=57831 helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1Sd9DG-0001wh-82; Fri, 08 Jun 2012 18:07:30 -0600 Message-ID: <4FD293B7.6080702@xenotime.net> Date: Fri, 08 Jun 2012 17:07:19 -0700 From: Randy Dunlap 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: netdev@vger.kernel.org, David Miller Subject: [PATCH] netdev: fix drivers/net/phy/ kernel-doc warnings 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 kernel-doc warnings in drivers/net/phy: Warning(drivers/net/phy/mdio_bus.c:109): No description found for parameter 'mdio_bus_np' Warning(drivers/net/phy/mdio_bus.c:109): Excess function parameter 'mdio_np' description in 'of_mdio_find_bus' Signed-off-by: Randy Dunlap --- drivers/net/phy/mdio_bus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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-35-rc1.orig/drivers/net/phy/mdio_bus.c +++ lnx-35-rc1/drivers/net/phy/mdio_bus.c @@ -96,7 +96,7 @@ static int of_mdio_bus_match(struct devi } /** * of_mdio_find_bus - Given an mii_bus node, find the mii_bus. - * @mdio_np: Pointer to the mii_bus. + * @mdio_bus_np: Pointer to the mii_bus. * * Returns a pointer to the mii_bus, or NULL if none found. *