All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header
@ 2024-03-26  9:30 Boris Brezillon
  2024-03-26 10:13 ` Liviu Dudau
  2024-03-26 10:59 ` Boris Brezillon
  0 siblings, 2 replies; 3+ messages in thread
From: Boris Brezillon @ 2024-03-26  9:30 UTC (permalink / raw
  To: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe
  Cc: dri-devel, kernel, Stephen Rothwell

The kernel doc prefix is /** not /*.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
---
 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;
 };
 
-- 
2.44.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header
  2024-03-26  9:30 [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header Boris Brezillon
@ 2024-03-26 10:13 ` Liviu Dudau
  2024-03-26 10:59 ` Boris Brezillon
  1 sibling, 0 replies; 3+ messages in thread
From: Liviu Dudau @ 2024-03-26 10:13 UTC (permalink / raw
  To: Boris Brezillon
  Cc: Steven Price, Adrián Larumbe, dri-devel, kernel,
	Stephen Rothwell

On Tue, Mar 26, 2024 at 10:30:55AM +0100, Boris Brezillon wrote:
> The kernel doc prefix is /** not /*.
> 
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>

Acked-by: Liviu Dudau <liviu.dudau@arm.com>

Best regards,
Liviu

> ---
>  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;
>  };
>  
> -- 
> 2.44.0
> 

-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header
  2024-03-26  9:30 [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header Boris Brezillon
  2024-03-26 10:13 ` Liviu Dudau
@ 2024-03-26 10:59 ` Boris Brezillon
  1 sibling, 0 replies; 3+ messages in thread
From: Boris Brezillon @ 2024-03-26 10:59 UTC (permalink / raw
  To: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe
  Cc: dri-devel, kernel, Stephen Rothwell

On Tue, 26 Mar 2024 10:30:55 +0100
Boris Brezillon <boris.brezillon@collabora.com> wrote:

> The kernel doc prefix is /** not /*.
> 
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>

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;
>  };
>  


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-26 11:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-26  9:30 [PATCH] drm/panthor: Fix wrong kernel-doc format in the uAPI header Boris Brezillon
2024-03-26 10:13 ` Liviu Dudau
2024-03-26 10:59 ` Boris Brezillon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.