]> git.itanic.dy.fi Git - linux-stable/commitdiff
drm/i915/gem: reconcile Excess struct member kernel-doc warnings
authorRandy Dunlap <rdunlap@infradead.org>
Tue, 26 Dec 2023 19:54:29 +0000 (11:54 -0800)
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Wed, 10 Jan 2024 09:55:58 +0000 (11:55 +0200)
Document nested struct members with full names as described in
Documentation/doc-guide/kernel-doc.rst.

i915_gem_context_types.h:420: warning: Excess struct member 'lock' description in 'i915_gem_context'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: dri-devel@lists.freedesktop.org
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231226195432.10891-1-rdunlap@infradead.org
(cherry picked from commit 7353c3d7c15017140a8b984e41f94be0bf535e73)
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
drivers/gpu/drm/i915/gem/i915_gem_context_types.h

index c573c067779f58ad0187832324cdb3fcc2892bc9..03bc7f9d191b98a4df1201098f9fa5c160a3502c 100644 (file)
@@ -412,9 +412,9 @@ struct i915_gem_context {
 
        /** @stale: tracks stale engines to be destroyed */
        struct {
-               /** @lock: guards engines */
+               /** @stale.lock: guards engines */
                spinlock_t lock;
-               /** @engines: list of stale engines */
+               /** @stale.engines: list of stale engines */
                struct list_head engines;
        } stale;
 };