Skip to content

Commit 30e18a8

Browse files
rddunlapjlahtine-intel
authored andcommitted
drm/i915/gem: reconcile Excess struct member kernel-doc warnings
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 7353c3d) Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
1 parent 584ebbe commit 30e18a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/i915/gem/i915_gem_context_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ struct i915_gem_context {
412412

413413
/** @stale: tracks stale engines to be destroyed */
414414
struct {
415-
/** @lock: guards engines */
415+
/** @stale.lock: guards engines */
416416
spinlock_t lock;
417-
/** @engines: list of stale engines */
417+
/** @stale.engines: list of stale engines */
418418
struct list_head engines;
419419
} stale;
420420
};

0 commit comments

Comments
 (0)