From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753418AbdFPKUA (ORCPT ); Fri, 16 Jun 2017 06:20:00 -0400 Received: from mail-pf0-f196.google.com ([209.85.192.196]:34814 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753296AbdFPKT7 (ORCPT ); Fri, 16 Jun 2017 06:19:59 -0400 Date: Fri, 16 Jun 2017 15:49:43 +0530 From: sayli karnik To: linux-kernel@vger.kernel.org Cc: Andrew Lunn , Florian Fainelli , Jonathan Corbet Subject: [PATCH] drivers: net: phy: Correct kernel-doc comment parameter Message-ID: <20170616101943.GA2964@sayli-HP-15-Notebook-PC> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Correct function parameter in kernel-doc comment to fix following warnings in the sphinx build: .//drivers/net/phy/phy.c:259: warning: No description found for parameter 'features' .//drivers/net/phy/phy.c:259: warning: Excess function parameter 'feature' description in 'phy_lookup_setting' Signed-off-by: sayli karnik --- drivers/net/phy/phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 82ab8fb..7524caa 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -241,7 +241,7 @@ static const struct phy_setting settings[] = { * phy_lookup_setting - lookup a PHY setting * @speed: speed to match * @duplex: duplex to match - * @feature: allowed link modes + * @features: allowed link modes * @exact: an exact match is required * * Search the settings array for a setting that matches the speed and -- 2.7.4