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=-11.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_2 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 A4896C388F9 for ; Wed, 21 Oct 2020 10:11:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3F02322251 for ; Wed, 21 Oct 2020 10:11:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603275079; bh=0YoH9Rt5LN3yhFZ9E/sW8Awr/TJIiPrp0Hndf57OxeQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=lrkA1ZX3Z6tcsrCnJUuI37fD//vZpREy+abpjUeGowE3wv6SZmvU49WPgyj+Hsauu kAcYGxnxjl7G4HJ8kgtGt+NRSzJpE9fNQs32J5wuof8aWrxkYAiWWc8h2zNWNHrqaf /wnVBauJzVeMR690CNtJr/X/18n5J6r6HR4JgB68= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2409669AbgJUKLS (ORCPT ); Wed, 21 Oct 2020 06:11:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:48584 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2405320AbgJUKLP (ORCPT ); Wed, 21 Oct 2020 06:11:15 -0400 Received: from coco.lan (ip5f5ad5a8.dynamic.kabel-deutschland.de [95.90.213.168]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9994F221FC; Wed, 21 Oct 2020 10:11:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603275074; bh=0YoH9Rt5LN3yhFZ9E/sW8Awr/TJIiPrp0Hndf57OxeQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=GxvzkVb88rfqI6o5XMTbs8V7sRLU3+68wpcIkJuaPnmiDp+R5CF6Lp3rb2D3pKdyU 0eirdfRB/lnaXQVLI6DlL3a/CG+XkF7+qeJRcuo1uyssC6wCJLduWTWRduWHe/YYHz XUruXt0Uq1AXCPQdaRxJQri1Q3AJ+Sm/lsEybh3s= Date: Wed, 21 Oct 2020 12:11:08 +0200 From: Mauro Carvalho Chehab To: Lyude Paul Cc: Linux Doc Mailing List , Jonathan Corbet , Ville =?UTF-8?B?U3lyasOkbMOk?= , Daniel Vetter , David Airlie , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 12/24] drm/dp: fix a kernel-doc issue at drm_edid.c Message-ID: <20201021121108.51972144@coco.lan> In-Reply-To: References: <96d648f86024535e5f7d5b0caf8ebf93c7f8eaab.1602590106.git.mchehab+huawei@kernel.org> X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Hi Lyude, Em Tue, 13 Oct 2020 15:49:11 -0400 Lyude Paul escreveu: > wait, I think there's some confusion here. these patches have already been > pushed As the patch adding the warning was merged upstream at the 5.10 merge window, the fixup one should also be added there, instead of waiting until 5.11 ;-) So, if OK for you, I'll send this upstream via my tree by the end of the merge window, as our goal is that 5.10 won't have doc warnings. Regards, Mauro > > > On Tue, 2020-10-13 at 14:14 +0200, Mauro Carvalho Chehab wrote: > > The name of the argument is different, causing those warnings: > > > > ./drivers/gpu/drm/drm_edid.c:3754: warning: Function parameter or member > > 'video_code' not described in 'drm_display_mode_from_cea_vic' > > ./drivers/gpu/drm/drm_edid.c:3754: warning: Excess function parameter > > 'vic' description in 'drm_display_mode_from_cea_vic' > > > > Fixes: 7af655bce275 ("drm/dp: Add drm_dp_downstream_mode()") > > Signed-off-by: Mauro Carvalho Chehab > > --- > > drivers/gpu/drm/drm_edid.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c > > index a82f37d44258..631125b46e04 100644 > > --- a/drivers/gpu/drm/drm_edid.c > > +++ b/drivers/gpu/drm/drm_edid.c > > @@ -3741,7 +3741,7 @@ drm_add_cmdb_modes(struct drm_connector *connector, u8 > > svd) > > /** > > * drm_display_mode_from_cea_vic() - return a mode for CEA VIC > > * @dev: DRM device > > - * @vic: CEA VIC of the mode > > + * @video_code: CEA VIC of the mode > > * > > * Creates a new mode matching the specified CEA VIC. > > * Thanks, Mauro