From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E5A45C388F9 for ; Fri, 23 Oct 2020 21:04:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9BABB2137B for ; Fri, 23 Oct 2020 21:04:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752761AbgJWVEd (ORCPT ); Fri, 23 Oct 2020 17:04:33 -0400 Received: from vps0.lunn.ch ([185.16.172.187]:42410 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751213AbgJWVEd (ORCPT ); Fri, 23 Oct 2020 17:04:33 -0400 Received: from andrew by vps0.lunn.ch with local (Exim 4.94) (envelope-from ) id 1kW4Eb-003Azi-6p; Fri, 23 Oct 2020 23:04:25 +0200 Date: Fri, 23 Oct 2020 23:04:25 +0200 From: Andrew Lunn To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , "David S. Miller" , Jonathan Corbet , Heiner Kallweit , Jakub Kicinski , Russell King , linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH v3 18/56] net: phy: fix kernel-doc markups Message-ID: <20201023210425.GG752111@lunn.ch> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 23, 2020 at 06:33:05PM +0200, Mauro Carvalho Chehab wrote: > Some functions have different names between their prototypes > and the kernel-doc markup. > > Signed-off-by: Mauro Carvalho Chehab > --- > drivers/net/phy/mdio_bus.c | 2 +- > drivers/net/phy/phy-c45.c | 2 +- > drivers/net/phy/phy.c | 2 +- > drivers/net/phy/phy_device.c | 2 +- > drivers/net/phy/phylink.c | 2 +- > 5 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c > index 757e950fb745..e59067c64e97 100644 > --- a/drivers/net/phy/mdio_bus.c > +++ b/drivers/net/phy/mdio_bus.c > @@ -472,7 +472,7 @@ static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio, > #endif > > /** > - * mdiobus_create_device_from_board_info - create a full MDIO device given > + * mdiobus_create_device - create a full MDIO device given > * a mdio_board_info structure > * @bus: MDIO bus to create the devices on > * @bi: mdio_board_info structure describing the devices Hi Mauro If you need to repost, could you make use of: -U --unified= Generate diffs with lines of context instead of the usual three. to increase the number of lines of context. Often three lines is not enough to include the function declaration in the patch, so i need to go look at the sources to do a review. Reviewed-by: Andrew Lunn Andrew