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 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 63FEFC6FD1F for ; Tue, 26 Mar 2024 11:00:01 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 99BA210EE7E; Tue, 26 Mar 2024 11:00:00 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="HUvEtmTq"; dkim-atps=neutral Received: from madrid.collaboradmins.com (madrid.collaboradmins.com [46.235.227.194]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8C28B10EE7E for ; Tue, 26 Mar 2024 10:59:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1711450797; bh=WxoMsk2Z9+8SbZmfsPr1f+uE5Xo5qLGQS/KKhgb1puA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=HUvEtmTqGml2fV8i+YzUwhPVop8J8qn3TxEagZYju+O+8rdmE0t56iZu/U0jneHvY IiisESiAl2P026nRB/xOiLAf6RrCNLbNc5UCtvjt5cF+nxQn//b1MF4QiY+01y9py+ apkPJClni3MRoOz0EN6YwMTWZRhyNFZwqqtUeSD6S/t9YrT8cMOkGMNVSlGlXH0FWB A/g9ozmve0RrZk2wuCGKzNwOkXahMkCQAOKpiH8d0YfRC6MciR3B4QD5znZpve5j+x 4qXQm13hM4eipNVyYXNq0kG0f1UOQ4zu/jYe0eoH+2S4P+4xTIAf/2OfT3dfa06gR7 4L1tjafpqv7KA== Received: from localhost (cola.collaboradmins.com [195.201.22.229]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: bbrezillon) by madrid.collaboradmins.com (Postfix) with ESMTPSA id 00550378110A; Tue, 26 Mar 2024 10:59:56 +0000 (UTC) Date: Tue, 26 Mar 2024 11:59:55 +0100 From: Boris Brezillon To: Boris Brezillon , Steven Price , Liviu Dudau , =?UTF-8?B?QWRy?= =?UTF-8?B?acOhbg==?= Larumbe Cc: dri-devel@lists.freedesktop.org, kernel@collabora.com, Stephen Rothwell Subject: Re: [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header Message-ID: <20240326115955.15ac7e83@collabora.com> In-Reply-To: <20240326093055.411932-1-boris.brezillon@collabora.com> References: <20240326093055.411932-1-boris.brezillon@collabora.com> Organization: Collabora X-Mailer: Claws Mail 4.2.0 (GTK 3.24.41; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Tue, 26 Mar 2024 10:30:55 +0100 Boris Brezillon wrote: > The kernel doc prefix is /** not /*. > > Reported-by: Stephen Rothwell > Signed-off-by: Boris Brezillon Queued to drm-misc-next. > --- > include/uapi/drm/panthor_drm.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/uapi/drm/panthor_drm.h b/include/uapi/drm/panthor_drm.h > index 373df80f41ed..dadb05ab1235 100644 > --- a/include/uapi/drm/panthor_drm.h > +++ b/include/uapi/drm/panthor_drm.h > @@ -336,10 +336,10 @@ struct drm_panthor_gpu_info { > /** @tiler_present: Bitmask encoding the tiler units exposed by the GPU. */ > __u64 tiler_present; > > - /* @core_features: Used to discriminate core variants when they exist. */ > + /** @core_features: Used to discriminate core variants when they exist. */ > __u32 core_features; > > - /* @pad: MBZ. */ > + /** @pad: MBZ. */ > __u32 pad; > }; >