Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1225084 > unrolled thread
| Started by | Geliang Tang <geliangtang@163.com> |
|---|---|
| First post | 2015-09-15 15:10 +0200 |
| Last post | 2015-09-18 13:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] drm/i915: fix kernel-doc warnings in i915_gem.c Geliang Tang <geliangtang@163.com> - 2015-09-15 15:10 +0200
Re: [PATCH] drm/i915: fix kernel-doc warnings in i915_gem.c Jani Nikula <jani.nikula@linux.intel.com> - 2015-09-18 13:30 +0200
| From | Geliang Tang <geliangtang@163.com> |
|---|---|
| Date | 2015-09-15 15:10 +0200 |
| Subject | [PATCH] drm/i915: fix kernel-doc warnings in i915_gem.c |
| Message-ID | <q8Y9K-5HB-45@gated-at.bofh.it> |
Fix the following 'make htmldocs' warnings: .//drivers/gpu/drm/i915/i915_gem.c:1729: warning: No description found for parameter 'vma' .//drivers/gpu/drm/i915/i915_gem.c:1729: warning: No description found for parameter 'vmf' .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'old' .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'new' .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'frontbuffer_bits' Signed-off-by: Geliang Tang <geliangtang@163.com> --- drivers/gpu/drm/i915/i915_gem.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 4d631a9..a96f97c 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c @@ -1711,8 +1711,8 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data, /** * i915_gem_fault - fault a page into the GTT - * vma: VMA in question - * vmf: fault info + * @vma: VMA in question + * @vmf: fault info * * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped * from userspace. The fault handler takes care of binding the object to @@ -4949,9 +4949,9 @@ int i915_gem_open(struct drm_device *dev, struct drm_file *file) /** * i915_gem_track_fb - update frontbuffer tracking - * old: current GEM buffer for the frontbuffer slots - * new: new GEM buffer for the frontbuffer slots - * frontbuffer_bits: bitmask of frontbuffer slots + * @old: current GEM buffer for the frontbuffer slots + * @new: new GEM buffer for the frontbuffer slots + * @frontbuffer_bits: bitmask of frontbuffer slots * * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them * from @old and setting them in @new. Both @old and @new can be NULL. -- 1.9.1 -- 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 | Jani Nikula <jani.nikula@linux.intel.com> |
|---|---|
| Date | 2015-09-18 13:30 +0200 |
| Message-ID | <qa21A-1bp-9@gated-at.bofh.it> |
| In reply to | #1225084 |
On Tue, 15 Sep 2015, Geliang Tang <geliangtang@163.com> wrote: > Fix the following 'make htmldocs' warnings: > > .//drivers/gpu/drm/i915/i915_gem.c:1729: warning: No description found for parameter 'vma' > .//drivers/gpu/drm/i915/i915_gem.c:1729: warning: No description found for parameter 'vmf' > > .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'old' > .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'new' > .//drivers/gpu/drm/i915/i915_gem.c:4962: warning: No description found for parameter 'frontbuffer_bits' > > Signed-off-by: Geliang Tang <geliangtang@163.com> Pushed to drm-intel-next-queued, thanks for the patch. BR, Jani. > --- > drivers/gpu/drm/i915/i915_gem.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c > index 4d631a9..a96f97c 100644 > --- a/drivers/gpu/drm/i915/i915_gem.c > +++ b/drivers/gpu/drm/i915/i915_gem.c > @@ -1711,8 +1711,8 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data, > > /** > * i915_gem_fault - fault a page into the GTT > - * vma: VMA in question > - * vmf: fault info > + * @vma: VMA in question > + * @vmf: fault info > * > * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped > * from userspace. The fault handler takes care of binding the object to > @@ -4949,9 +4949,9 @@ int i915_gem_open(struct drm_device *dev, struct drm_file *file) > > /** > * i915_gem_track_fb - update frontbuffer tracking > - * old: current GEM buffer for the frontbuffer slots > - * new: new GEM buffer for the frontbuffer slots > - * frontbuffer_bits: bitmask of frontbuffer slots > + * @old: current GEM buffer for the frontbuffer slots > + * @new: new GEM buffer for the frontbuffer slots > + * @frontbuffer_bits: bitmask of frontbuffer slots > * > * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them > * from @old and setting them in @new. Both @old and @new can be NULL. > -- > 1.9.1 > > -- Jani Nikula, Intel Open Source Technology Center -- 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