Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1223624 > unrolled thread
| Started by | Masanari Iida <standby24x7@gmail.com> |
|---|---|
| First post | 2015-09-13 14:20 +0200 |
| Last post | 2015-09-14 14:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] drm/i915: Fix warnings while make xmldocs caused by intel_lrc.c Masanari Iida <standby24x7@gmail.com> - 2015-09-13 14:20 +0200
Re: [PATCH] drm/i915: Fix warnings while make xmldocs caused by intel_lrc.c Daniel Vetter <daniel@ffwll.ch> - 2015-09-14 14:30 +0200
| From | Masanari Iida <standby24x7@gmail.com> |
|---|---|
| Date | 2015-09-13 14:20 +0200 |
| Subject | [PATCH] drm/i915: Fix warnings while make xmldocs caused by intel_lrc.c |
| Message-ID | <q8eqd-7mk-5@gated-at.bofh.it> |
This patch fix following warnings while "make xmldocs". .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: No description found for parameter 'req' .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: Excess function parameter 'request' description in 'intel_logical_ring_begin' .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: Excess function parameter 'ctx' description in 'intel_logical_ring_begin' Signed-off-by: Masanari Iida <standby24x7@gmail.com> --- drivers/gpu/drm/i915/intel_lrc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c index 72e0edd..963992a 100644 --- a/drivers/gpu/drm/i915/intel_lrc.c +++ b/drivers/gpu/drm/i915/intel_lrc.c @@ -765,8 +765,7 @@ static int logical_ring_prepare(struct drm_i915_gem_request *req, int bytes) /** * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands * - * @request: The request to start some new work for - * @ctx: Logical ring context whose ringbuffer is being prepared. + * @req: The request to start some new work for * @num_dwords: number of DWORDs that we plan to write to the ringbuffer. * * The ringbuffer might not be ready to accept the commands right away (maybe it needs to -- 2.6.0.rc0.24.gec371ff -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Date | 2015-09-14 14:30 +0200 |
| Subject | Re: [PATCH] drm/i915: Fix warnings while make xmldocs caused by intel_lrc.c |
| Message-ID | <q8B3s-66v-9@gated-at.bofh.it> |
| In reply to | #1223624 |
On Sun, Sep 13, 2015 at 09:08:31PM +0900, Masanari Iida wrote: > This patch fix following warnings while "make xmldocs". > .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: No description > found for parameter 'req' > .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: Excess function > parameter 'request' description in 'intel_logical_ring_begin' > .//drivers/gpu/drm/i915/intel_lrc.c:780: warning: Excess function > parameter 'ctx' description in 'intel_logical_ring_begin' > > Signed-off-by: Masanari Iida <standby24x7@gmail.com> Queued for -next, thanks for the patch. -Daniel > --- > drivers/gpu/drm/i915/intel_lrc.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c > index 72e0edd..963992a 100644 > --- a/drivers/gpu/drm/i915/intel_lrc.c > +++ b/drivers/gpu/drm/i915/intel_lrc.c > @@ -765,8 +765,7 @@ static int logical_ring_prepare(struct drm_i915_gem_request *req, int bytes) > /** > * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands > * > - * @request: The request to start some new work for > - * @ctx: Logical ring context whose ringbuffer is being prepared. > + * @req: The request to start some new work for > * @num_dwords: number of DWORDs that we plan to write to the ringbuffer. > * > * The ringbuffer might not be ready to accept the commands right away (maybe it needs to > -- > 2.6.0.rc0.24.gec371ff > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web