From patchwork Thu Jan 14 08:04:51 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 12018821 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=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 183E4C433E0 for ; Thu, 14 Jan 2021 08:05:03 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 871D523A52 for ; Thu, 14 Jan 2021 08:05:02 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 871D523A52 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B928E89852; Thu, 14 Jan 2021 08:05:01 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 56FE489852 for ; Thu, 14 Jan 2021 08:05:01 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id AB99823A56; Thu, 14 Jan 2021 08:05:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1610611500; bh=3L3VSinaQV9/6wu4p400uD1amdFzsglY2QC0uVTTqUo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=S2lFIy8ETL8fZ9yUfZ3GD9Med6hNEOB9E9l/8pU6hADeHiU0u9D27nczLHKgnywG8 hRz6LQ51tA79iHTO056IdFECyy/O3U+jmalvlbifS1Pk6zZb8UIDNPK1Bc/p8Z9pqL L0ZRGASxvkNcLuEJX2jDiBJYOW/mt5PRigHoyt6RaXPy3VZOVMDvMd3UA4WCmDyz5i QkMSs8CuevceyizAEqO+cyicQPhbnxq2TN5kNSab06SEtrloyrvf0gnZO+VyOdPhwb Tb9ENkCey+xFc3b7w3IVWiF50puzBhYcQ/OmibnpauIXLujdPlnj7YQVEpfmMTpK/H v06KihDjIFqGQ== Received: by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kzxco-00EQ72-GG; Thu, 14 Jan 2021 09:04:58 +0100 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Subject: [PATCH v6 15/16] drm: drm_crc: fix a kernel-doc markup Date: Thu, 14 Jan 2021 09:04:51 +0100 Message-Id: <2439fb6713e9b2aa27a81f3269a4b0e8e7dfcd36.1610610937.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Thomas Zimmermann , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, David Airlie , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" A function has a different name between their prototype and its kernel-doc markup: ../include/drm/drm_crtc.h:1257: warning: expecting prototype for drm_crtc_alloc_with_planes(). Prototype was for drmm_crtc_alloc_with_planes() instead Signed-off-by: Mauro Carvalho Chehab Acked-by: Simon Ser --- include/drm/drm_crtc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 540e2e43ec93..13eeba2a750a 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -1232,7 +1232,7 @@ void *__drmm_crtc_alloc_with_planes(struct drm_device *dev, const char *name, ...); /** - * drm_crtc_alloc_with_planes - Allocate and initialize a new CRTC object with + * drmm_crtc_alloc_with_planes - Allocate and initialize a new CRTC object with * specified primary and cursor planes. * @dev: DRM device * @type: the type of the struct which contains struct &drm_crtc