diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2018-02-08 05:54:49 -0500 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-02-08 10:08:51 -0500 |
commit | eb8269b54d75e4742fbe3ae994fb2f69b7283b40 (patch) | |
tree | e63858404d85c09d30eea61ed0cf74336083c8e0 /drivers/gpu/drm/i915/i915_syncmap.c | |
parent | 34e07e42c55aeaa78e93b057a6664e2ecde3fadb (diff) |
drm/i915: Fix kerneldoc parameter markup
drivers/gpu/drm/i915/i915_syncmap.c:92: warning: No description found for parameter 'root'
drivers/gpu/drm/i915/i915_syncmap.c:155: warning: No description found for parameter 'root'
drivers/gpu/drm/i915/i915_syncmap.c:155: warning: No description found for parameter 'id'
drivers/gpu/drm/i915/i915_syncmap.c:155: warning: No description found for parameter 'seqno'
drivers/gpu/drm/i915/i915_syncmap.c:354: warning: No description found for parameter 'root'
drivers/gpu/drm/i915/i915_syncmap.c:354: warning: No description found for parameter 'id'
drivers/gpu/drm/i915/i915_syncmap.c:354: warning: No description found for parameter 'seqno'
drivers/gpu/drm/i915/i915_syncmap.c:396: warning: No description found for parameter 'root'
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20180208105449.29880-2-chris@chris-wilson.co.uk
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_syncmap.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_syncmap.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/gpu/drm/i915/i915_syncmap.c b/drivers/gpu/drm/i915/i915_syncmap.c index 0087acf731a8..58f8d0cc125c 100644 --- a/drivers/gpu/drm/i915/i915_syncmap.c +++ b/drivers/gpu/drm/i915/i915_syncmap.c | |||
@@ -86,7 +86,7 @@ struct i915_syncmap { | |||
86 | 86 | ||
87 | /** | 87 | /** |
88 | * i915_syncmap_init -- initialise the #i915_syncmap | 88 | * i915_syncmap_init -- initialise the #i915_syncmap |
89 | * @root - pointer to the #i915_syncmap | 89 | * @root: pointer to the #i915_syncmap |
90 | */ | 90 | */ |
91 | void i915_syncmap_init(struct i915_syncmap **root) | 91 | void i915_syncmap_init(struct i915_syncmap **root) |
92 | { | 92 | { |
@@ -139,9 +139,9 @@ static inline bool seqno_later(u32 a, u32 b) | |||
139 | 139 | ||
140 | /** | 140 | /** |
141 | * i915_syncmap_is_later -- compare against the last know sync point | 141 | * i915_syncmap_is_later -- compare against the last know sync point |
142 | * @root - pointer to the #i915_syncmap | 142 | * @root: pointer to the #i915_syncmap |
143 | * @id - the context id (other timeline) we are synchronising to | 143 | * @id: the context id (other timeline) we are synchronising to |
144 | * @seqno - the sequence number along the other timeline | 144 | * @seqno: the sequence number along the other timeline |
145 | * | 145 | * |
146 | * If we have already synchronised this @root timeline with another (@id) then | 146 | * If we have already synchronised this @root timeline with another (@id) then |
147 | * we can omit any repeated or earlier synchronisation requests. If the two | 147 | * we can omit any repeated or earlier synchronisation requests. If the two |
@@ -339,9 +339,9 @@ found: | |||
339 | 339 | ||
340 | /** | 340 | /** |
341 | * i915_syncmap_set -- mark the most recent syncpoint between contexts | 341 | * i915_syncmap_set -- mark the most recent syncpoint between contexts |
342 | * @root - pointer to the #i915_syncmap | 342 | * @root: pointer to the #i915_syncmap |
343 | * @id - the context id (other timeline) we have synchronised to | 343 | * @id: the context id (other timeline) we have synchronised to |
344 | * @seqno - the sequence number along the other timeline | 344 | * @seqno: the sequence number along the other timeline |
345 | * | 345 | * |
346 | * When we synchronise this @root timeline with another (@id), we also know | 346 | * When we synchronise this @root timeline with another (@id), we also know |
347 | * that we have synchronized with all previous seqno along that timeline. If | 347 | * that we have synchronized with all previous seqno along that timeline. If |
@@ -382,7 +382,7 @@ static void __sync_free(struct i915_syncmap *p) | |||
382 | 382 | ||
383 | /** | 383 | /** |
384 | * i915_syncmap_free -- free all memory associated with the syncmap | 384 | * i915_syncmap_free -- free all memory associated with the syncmap |
385 | * @root - pointer to the #i915_syncmap | 385 | * @root: pointer to the #i915_syncmap |
386 | * | 386 | * |
387 | * Either when the timeline is to be freed and we no longer need the sync | 387 | * Either when the timeline is to be freed and we no longer need the sync |
388 | * point tracking, or when the fences are all known to be signaled and the | 388 | * point tracking, or when the fences are all known to be signaled and the |