From patchwork Sat Mar 26 23:37:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12792693 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org 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 smtp.lore.kernel.org (Postfix) with ESMTPS id D3846C433F5 for ; Sat, 26 Mar 2022 23:37:32 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4AC8A10E05A; Sat, 26 Mar 2022 23:37:31 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3464010E05A; Sat, 26 Mar 2022 23:37:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-ID:Content-Description:In-Reply-To:References; bh=9eoNsGPRKDQN5hEBg7GTRtq6aujXrI8GzeayPp1jk4Y=; b=tLwgQ5EXzg8YZU4qShcAUON0J9 1yuz1RaHyKMGRge7whSW4f6rmnOQFm3WMN4WMzqcU/0/airpZ3kGt+uWtD6nJtb3Y2M67JY8Z1BO6 X0SVj0aG7LJBmGmSVJgvPQ78Wtl+G/XJWPY78GXcjAELtsFD17JV7lDUovZv9T6zX3cRLtuGDw3j+ L+PbKmztk4VEJKGxx8sb5dFhqbrlYS7cq68r2Pz74nUif1baCTIkWt9ImkLGnXmzl07y4cpYxuhUk VXFp7S7mxNbtfep0d/r3/W1Xqw6BHqHVFNAijnfcj3DYulGkeoK9221vHSch/ezxTt/hyKd4tbxcM h4QVIQVg==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1nYFyL-0051yD-0L; Sat, 26 Mar 2022 23:37:29 +0000 From: Randy Dunlap To: dri-devel@lists.freedesktop.org Subject: [PATCH] drm/amd/display: DCN3.1: don't mark as kernel-doc Date: Sat, 26 Mar 2022 16:37:26 -0700 Message-Id: <20220326233726.14712-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.34.1 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: "Pan, Xinhui" , Leo Li , Randy Dunlap , Rodrigo Siqueira , patches@lists.linux.dev, amd-gfx@lists.freedesktop.org, Nicholas Kazlauskas , Alex Deucher , =?utf-8?q?Christian_K=C3=B6nig?= Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" There is no need for this one static function to be marked as kernel-doc notation. Avoid this doc build warning: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Enable CRTC Fixes: 110d3968fe95 ("drm/amd/display: Add DCN3.1 OPTC") Signed-off-by: Randy Dunlap Cc: Alex Deucher Cc: Nicholas Kazlauskas Cc: amd-gfx@lists.freedesktop.org Cc: Christian König Cc: "Pan, Xinhui" Cc: Harry Wentland Cc: Leo Li Cc: Rodrigo Siqueira --- drivers/gpu/drm/amd/display/dc/dcn31/dcn31_optc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- linux-next-20220325.orig/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_optc.c +++ linux-next-20220325/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_optc.c @@ -91,8 +91,7 @@ static void optc31_set_odm_combine(struc optc1->opp_count = opp_cnt; } -/** - * Enable CRTC +/* * Enable CRTC - call ASIC Control Object to enable Timing generator. */ static bool optc31_enable_crtc(struct timing_generator *optc)