diff options
author | Boris Brezillon <[email protected]> | 2024-03-26 10:30:55 +0100 |
---|---|---|
committer | Boris Brezillon <[email protected]> | 2024-03-26 11:57:39 +0100 |
commit | 462a7c0f8e3f833e5ca3dd3f427882b60b3f38e9 (patch) | |
tree | c3dc7c6b98c2d147f9ca3234a352bf0308232584 | |
parent | 55679cc22e60e8ec23b2340248389022798416cd (diff) |
drm/panthor: Fix wrong kernel-doc format in the uAPI header
The kernel doc prefix is /** not /*.
Reported-by: Stephen Rothwell <[email protected]>
Signed-off-by: Boris Brezillon <[email protected]>
Acked-by: Liviu Dudau <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | include/uapi/drm/panthor_drm.h | 4 |
1 files 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; }; |